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

10 lines
168 B
JavaScript
Raw Normal View History

2017-11-08 17:51:55 +00:00
const urlUtils = {};
urlUtils.hash = function(url) {
2018-03-09 17:49:35 +00:00
const s = url.split("#");
if (s.length <= 1) return "";
2017-11-08 17:51:55 +00:00
return s[s.length - 1];
2018-03-09 17:49:35 +00:00
};
2017-11-08 17:51:55 +00:00
2018-03-09 17:49:35 +00:00
module.exports = urlUtils;