Skip to content

Instantly share code, notes, and snippets.

@ezekielchentnik
Created July 13, 2019 02:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ezekielchentnik/86cdb795a4c29b4c91346ba4549fc15c to your computer and use it in GitHub Desktop.
Save ezekielchentnik/86cdb795a4c29b4c91346ba4549fc15c to your computer and use it in GitHub Desktop.
reusable query selector helper
const $ = q => (els => els.length > 1 ? els : els[0])(document.querySelectorAll(q))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment