Skip to content

Instantly share code, notes, and snippets.

@pocojang
Last active August 12, 2018 05:07
Show Gist options
  • Select an option

  • Save pocojang/34b97d2993352e1c9327d52191b3d09a to your computer and use it in GitHub Desktop.

Select an option

Save pocojang/34b97d2993352e1c9327d52191b3d09a to your computer and use it in GitHub Desktop.
쿼리 셀렉터
export default function(query, target = document) {
return target.querySelectorAll(query).length > 1 ? [...target.querySelectorAll(query)] : target.querySelector(query);
}
function $(query) {
return (document.querySelectorAll(query).length >= 2
? Array.from(document.querySelectorAll(query));
: document.querySelector(query));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment