Sylvain Filoni
update gradio client
9ada4bc
raw
history blame contribute delete
218 Bytes
/**
* 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('')
}