# queryall

> Convert querySelectorAll's NodeList into an array.

Latest version **0.0.1** (published 2013-11-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install queryall
pnpm add queryall
yarn add queryall
bun add queryall
```

## 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.1 |
| Published | 2013-11-19 |
| First published | 2013-11-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Stefan Duberg |
| Maintainers | dubban |

## Links

- npm: https://www.npmjs.com/package/queryall
- Repository: https://github.com/stefanduberg/queryall
- Issues: https://github.com/stefanduberg/queryall/issues
- npm.io page: https://npm.io/package/queryall

## Recent versions

- 0.0.1 (latest) — 2013-11-19
- 0.0.0 — 2013-11-19

## README

# queryall
Convert document.querySelectorAll's NodeList into an array.

## Usage
```js
var queryAll = require('queryall');

// document.querySelectorAll('.foo');
queryAll('.foo').forEach(function (el) {
  console.log(el);
});

// parent.querySelectorAll('.foo');
var parent = document.querySelector('.parent');
queryAll('.foo', parent).forEach(function (el) {
  console.log(el);
});
```

## Install
With [npm](https://npmjs.org) do

```bash
$ npm install queryall
```

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