1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-04-20 11:28:40 +02:00
2018-03-09 17:49:35 +00:00

10 lines
168 B
JavaScript

const urlUtils = {};
urlUtils.hash = function(url) {
const s = url.split("#");
if (s.length <= 1) return "";
return s[s.length - 1];
};
module.exports = urlUtils;