# is-empty-array

> Check if an array is empty.

Latest version **1.1.0** (published 2015-03-23) · MIT license · 0 weekly downloads

## Install

```sh
npm install is-empty-array
pnpm add is-empty-array
yarn add is-empty-array
bun add is-empty-array
```

## 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.1.0 |
| Published | 2015-03-23 |
| First published | 2015-03-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Ellen Gummesson |
| Maintainers | gummesson |
| Keywords | array, empty |

## Links

- npm: https://www.npmjs.com/package/is-empty-array
- Repository: https://github.com/gummesson/is-empty-array
- Issues: https://github.com/gummesson/is-empty-array/issues
- npm.io page: https://npm.io/package/is-empty-array

## Recent versions

- 1.1.0 (latest) — 2015-03-23
- 1.0.0 — 2015-03-12

## README

# is-empty-array

[![NPM version][npm-img]][npm-url]
[![License][license-img]][license-url]
[![Build status][travis-img]][travis-url]

Check if an array is empty.

## Installation

```
npm install is-empty-array
```

## Usage

``` javascript
var isEmptyArray = require('is-empty-array')

isEmptyArray([])  // => true
isEmptyArray([1]) // => false
isEmptyArray({})  // => false
```

[npm-img]: https://img.shields.io/npm/v/is-empty-array.svg?style=flat-square
[npm-url]: https://npmjs.org/package/is-empty-array
[license-img]: http://img.shields.io/npm/l/is-empty-array.svg?style=flat-square
[license-url]: LICENSE
[travis-img]: https://img.shields.io/travis/gummesson/is-empty-array.svg?style=flat-square
[travis-url]: https://travis-ci.org/gummesson/is-empty-array

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