Files
Pinry/pinry-spa/src/components/utils/PinHandler.js

14 lines
175 B
JavaScript
Raw Normal View History

2019-11-25 23:48:01 +08:00
/**
* Remove http prefix from url.
* @param url: String
*/
function escapeUrl(url) {
const uri = new URL(url);
return uri.pathname;
}
export default {
escapeUrl,
};