aprile / qs

A minimalist dom library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SYNOPSIS

A minimal query selector helper library.

INSTALL

npm install hxoht/qs

API

There are only two methods, qs and qsa.

qs is a short function that assumes document, but can take an optional additional parameter that will specify scope of the selector's execution.

const qs = (s, p) => (p || document).querySelector(s)

qsa is the same as above, but uses .querySelectorAll and will also convert the NodeList into an array, providing at least an empty array if there are no nodes found.

const qsa = (s, p) => [...(p || document).querySelectorAll(s)]
module.exports = { qs, qsa }

About

A minimalist dom library


Languages

Language:JavaScript 100.0%