# @bemoje/is-array

> Returns whether 'value' is an Array.

Latest version **1.0.1** (published 2020-04-30) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install @bemoje/is-array
pnpm add @bemoje/is-array
yarn add @bemoje/is-array
bun add @bemoje/is-array
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2020-04-30 |
| First published | 2020-04-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 6.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Benjamin M. Jensen |
| Maintainers | bemoje |
| Keywords | returns, array, isarray, evaluate |

## Links

- npm: https://www.npmjs.com/package/@bemoje/is-array
- Repository: https://github.com/bemoje/bemoje-is-array
- Homepage: https://github.com/bemoje/bemoje-is-array#readme
- Issues: https://github.com/bemoje/bemoje-is-array/issues
- npm.io page: https://npm.io/package/@bemoje/is-array

## Recent versions

- 1.0.1 (latest) — 2020-04-30
- 1.0.0 — 2020-04-25

## README

# @bemoje/is-array

Returns whether 'value' is an Array.

#### Version

<span><a href="https://npmjs.org/@bemoje/is-array" title="View this project on NPM"><img src="https://img.shields.io/npm/v/@bemoje/is-array" alt="NPM version" /></a></span>

#### Travis CI

<span><a href="https://npmjs.org/@bemoje/is-array" title="View this project on NPM"><img src="https://travis-ci.org/bemoje/bemoje-is-array.svg?branch=master" alt="dependencies" /></a></span>

#### Dependencies

<span><a href="https://npmjs.org/@bemoje/is-array" title="View this project on NPM"><img src="https://david-dm.org/bemoje/bemoje-is-array.svg" alt="dependencies" /></a></span>

#### Stats

<span><a href="https://npmjs.org/@bemoje/is-array" title="View this project on NPM"><img src="https://img.shields.io/npm/dt/@bemoje/is-array" alt="NPM downloads" /></a></span>
<span><a href="https://github.com/bemoje/bemoje-is-array/fork" title="Fork this project"><img src="https://img.shields.io/github/forks/bemoje/bemoje-is-array" alt="Forks" /></a></span>

#### Donate

<span><a href="https://www.buymeacoffee.com/bemoje" title="Donate to this project using Buy Me A Beer"><img src="https://img.shields.io/badge/buy%20me%20a%20coffee-donate-yellow.svg?label=Buy me a beer!" alt="Buy Me A Beer donate button" /></a></span>
<span><a href="https://paypal.me/forstaaloen" title="Donate to this project using Paypal"><img src="https://img.shields.io/badge/paypal-donate-yellow.svg?label=PayPal" alt="PayPal donate button" /></a></span>

## Installation

```sh
npm install @bemoje/is-array
npm install --save @bemoje/is-array
npm install --save-dev @bemoje/is-array
```

## Usage

```javascript
import isArray from '@bemoje/is-array'

isArray([])
//=> true

isArray(new Array())
//=> true

isArray(new Uint16Array(2))
//=> false

isArray()
//=> false

```


## Tests
Uses *Jest* to test module functionality. Run tests to get coverage details.

```bash
npm run test
```

## API
### isArray

##### Returns
whether 'value' is an Array.

##### Parameters

-   `value` **any** The value to evaluate.

##### Returns
**[boolean][3]** 

[1]: #isarray

[2]: #parameters

[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean

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