joplin/ReactNativeClient/lib/urlUtils.js

9 lines
166 B
JavaScript
Raw Normal View History

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