traxxx/src/utils/url.js

16 lines
189 B
JavaScript

'use strict';
function stripQuery(url) {
if (!url) {
return null;
}
const { origin, pathname } = new URL(url);
return `${origin}${pathname}`;
}
module.exports = {
stripQuery,
};