# @blivesta/util-selectors

> Just a small JavaScript utilities

Latest version **0.0.0** (published 2018-03-16) · MIT license · 0 weekly downloads

## Install

```sh
npm install @blivesta/util-selectors
pnpm add @blivesta/util-selectors
yarn add @blivesta/util-selectors
bun add @blivesta/util-selectors
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.0 |
| Published | 2018-03-16 |
| First published | 2018-03-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 154.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | blivesta |
| Maintainers | blivesta |

## Links

- npm: https://www.npmjs.com/package/@blivesta/util-selectors
- Repository: https://github.com/blivesta/utils
- Homepage: https://github.com/blivesta/utils#readme
- Issues: https://github.com/blivesta/utils/issues
- npm.io page: https://npm.io/package/@blivesta/util-selectors

## Dependencies (2)

- [babel-core](https://npm.io/package/babel-core.md) ^6.26.0
- [@blivesta/util-doc](https://npm.io/package/@blivesta/util-doc.md) ^0.0.0

## Recent versions

- 0.0.0 (latest) — 2018-03-16

## README

# @blivesta/util-selectors

## Install

```
yarn add @blivesta/util-selectors
```

## Usage

```hmtl
<div class="foo">
  <div class="bar">1</div>
  <div class="bar">2</div>
</div>
```

```js
import { $$, $$$ } from '@blivesta/util-selectors'

$$$('.bar').length // 2
$$$('.bar', $$('#foo')).forEach((node, i) => {
  node.getAttribute('class') // 'bar'
})
```

## License

Released under the MIT license.

---
_Source: https://npm.io/package/@blivesta/util-selectors · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
