bpms_site/.svn/pristine/de/deab1a3d332fb931c56e8462843cfb3fd6c1b0cb.svn-base
2025-11-02 16:38:49 +03:30

7 lines
289 B
Plaintext

/**
* Given a URL as a string and a base URL it will make the URL relative
* if the parsed protocol and host is the same as the one in the base
* URL. Otherwise it returns the same URL string.
*/
export declare function relativizeURL(url: string | string, base: string | URL): string;