14 lines
366 B
Plaintext
14 lines
366 B
Plaintext
/**
|
|
* Cleans a URL by stripping the protocol, host, and search params.
|
|
*
|
|
* @param urlString the url to clean
|
|
* @returns the cleaned url
|
|
*/ export function cleanURL(urlString) {
|
|
const url = new URL(urlString);
|
|
url.host = "localhost:3000";
|
|
url.search = "";
|
|
url.protocol = "http";
|
|
return url.toString();
|
|
}
|
|
|
|
//# sourceMappingURL=clean-url.js.map |