mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-24 10:27:10 +02:00
9 lines
166 B
JavaScript
9 lines
166 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;
|