Skip to content

Instantly share code, notes, and snippets.

@shgysk8zer0
Created March 15, 2016 00:27
Show Gist options
  • Save shgysk8zer0/575c647afb6fcf362f27 to your computer and use it in GitHub Desktop.
Save shgysk8zer0/575c647afb6fcf362f27 to your computer and use it in GitHub Desktop.
Quickly get info from <link>s,filtering unwanted `rel`s
function $(query) {
return Array.from(document.querySelectorAll(query));
}
$('link').filter(link = > ![
'icon',
'stylesheet',
'next',
'prev'
].some(rel => link.relList.contains(rel))).reduce((links, link) => {
links[link.rel] = link.href;
return links
}, {});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment