Skip to content

Instantly share code, notes, and snippets.

@crazyyy
Last active January 5, 2019 18:26
Show Gist options
  • Save crazyyy/1380a505b0753d965919742dd4ffdee0 to your computer and use it in GitHub Desktop.
Save crazyyy/1380a505b0753d965919742dd4ffdee0 to your computer and use it in GitHub Desktop.
#js || get an absolute URL
var getAbsoluteUrl = (function() {
var a;
return function(url) {
if (!a) a = document.createElement('a');
a.href = url;
return a.href;
};
})();
getAbsoluteUrl('');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment