bpms_site/.svn/pristine/7c/7c2aae6664be298d6d7b07e013258379b802cafb.svn-base
2025-11-02 16:38:49 +03:30

24 lines
564 B
Plaintext

/**
* Cleans a URL by stripping the protocol, host, and search params.
*
* @param urlString the url to clean
* @returns the cleaned url
*/ "use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "cleanURL", {
enumerable: true,
get: function() {
return cleanURL;
}
});
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