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

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