Just a small JavaScript utilities
npm install @blivesta/util-selectors```
yarn add @blivesta/util-selectors
`hmtl`
`js
import { $$, $$$ } from '@blivesta/util-selectors'
$$$('.bar').length // 2
$$$('.bar', $$('#foo')).forEach((node, i) => {
node.getAttribute('class') // 'bar'
})
``
Released under the MIT license.