Spaces:
Sleeping
Sleeping
File size: 218 Bytes
cd6720a | 1 2 3 4 5 6 7 | /**
* Removes query parameters and hashes from a given URL.
*/
export function getCleanUrl(url: URL, isAbsolute: boolean = true): string {
return [isAbsolute && url.origin, url.pathname].filter(Boolean).join('')
}
|