Skip to content

Instantly share code, notes, and snippets.

@leastbad
Created September 16, 2019 11:40
Show Gist options
  • Save leastbad/8be3fb48caaefad2aad3be7f680efb88 to your computer and use it in GitHub Desktop.
Save leastbad/8be3fb48caaefad2aad3be7f680efb88 to your computer and use it in GitHub Desktop.
const isSelectorValid = (qs => (
selector => {
try { qs(selector) } catch (e) { return false }
return true
}
))(s => document.createDocumentFragment().querySelector(s))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment