Skip to content

Instantly share code, notes, and snippets.

@dwickstrom
Last active May 19, 2018 18:43
Show Gist options
  • Select an option

  • Save dwickstrom/ecea55504a693bdfd4bd4c8279853800 to your computer and use it in GitHub Desktop.

Select an option

Save dwickstrom/ecea55504a693bdfd4bd4c8279853800 to your computer and use it in GitHub Desktop.
Little DOM query thing
export const $ = (selector, scope=document) =>
Array
.of(scope.querySelector(selector))
.filter(x => x)
export const $$ = (selector, scope=document) =>
Array.from(scope.querySelectorAll(selector))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment