24 lines
564 B
Plaintext
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 |