Skip to content

Instantly share code, notes, and snippets.

@nicolasrenon
Last active November 13, 2016 19:35
Show Gist options
  • Save nicolasrenon/ab44b74b055bf4e00570043677ab1b95 to your computer and use it in GitHub Desktop.
Save nicolasrenon/ab44b74b055bf4e00570043677ab1b95 to your computer and use it in GitHub Desktop.
DOM selector
export function dom(selector, context) {
let nodes = (context || document).querySelectorAll(selector);
return (nodes.length === 1) ? nodes[0] : Array.prototype.slice.call(nodes);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment