qsa-min

1.0.2 • Public • Published

SYNOPSIS

A minimal query selector helper library.

INSTALL

npm install qsa-min

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 }

Readme

Keywords

none

Package Sidebar

Install

npm i qsa-min

Weekly Downloads

5

Version

1.0.2

License

ISC

Unpacked Size

1.24 kB

Total Files

3

Last publish

Collaborators

  • raynos