Skip to content

Instantly share code, notes, and snippets.

@asleepwalker
Created August 12, 2016 10:57
Show Gist options
  • Save asleepwalker/775fb7075dffd030a62ed1378e2e49bb to your computer and use it in GitHub Desktop.
Save asleepwalker/775fb7075dffd030a62ed1378e2e49bb to your computer and use it in GitHub Desktop.
var getAbsoluteUrl = (function() {
var a;
return function(url) {
if(!a) a = document.createElement('a');
a.href = url;
return a.href;
};
})();
// Usage
getAbsoluteUrl('/something'); // "https://gist.github.com/something"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment