# are-arrays

> Function for check if all values are arrays

Latest version **1.0.0** (published 2017-04-18) · MIT license · 0 weekly downloads

## Install

```sh
npm install are-arrays
pnpm add are-arrays
yarn add are-arrays
bun add are-arrays
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2017-04-18 |
| First published | 2017-04-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Ricardo Moreno |
| Maintainers | rich-97 |
| Keywords | arrays, equal |

## Links

- npm: https://www.npmjs.com/package/are-arrays
- Repository: https://github.com/rich-97/are-arrays
- Homepage: https://github.com/rich-97/are-arrays#readme
- Issues: https://github.com/rich-97/are-arrays/issues
- npm.io page: https://npm.io/package/are-arrays

## Recent versions

- 1.0.0 (latest) — 2017-04-18

## README

# are-arrays

Function for check if all values are arrays.

## Installation

With the simple command `npm install are-arrays`.

## Usage

The function takes any arguments as you want.

Example:

```js
const areArrays = require('are-arrays');

areArrays({}, 12, [1, null]); // false
areArrays([], [1, 33.2]); // true
areArrays(function(){}, String(), []); // false
```

## Test

You should have installed globaly `jasmine-node` for test this package, then execute `npm run test`.

## License

[MIT](https://github.com/rich-97/req-ajax/blob/master/LICENSE)

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