Files
Pinry/pinry-spa/src/components/utils/PinHandler.js
2019-12-08 12:58:50 -05:00

14 lines
175 B
JavaScript

/**
* Remove http prefix from url.
* @param url: String
*/
function escapeUrl(url) {
const uri = new URL(url);
return uri.pathname;
}
export default {
escapeUrl,
};