UNPKG

msw

Version:

Seamless REST/GraphQL API mocking library for browser and Node.js.

11 lines 236 B
const REDUNDANT_CHARACTERS_EXP = /[?|#].*$/g; function cleanUrl(path) { if (path.endsWith("?")) { return path; } return path.replace(REDUNDANT_CHARACTERS_EXP, ""); } export { cleanUrl }; //# sourceMappingURL=cleanUrl.mjs.map