Files
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

7 lines
289 B
TypeScript

/**
* 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;