# @f/equal-array

> Check if two arrays have shallow equality

Latest version **1.2.2** (published 2016-03-03) · MIT license · 0 weekly downloads

## Install

```sh
npm install @f/equal-array
pnpm add @f/equal-array
yarn add @f/equal-array
bun add @f/equal-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.2.2 |
| Published | 2016-03-03 |
| First published | 2016-03-03 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Maintainers | f |

## Links

- npm: https://www.npmjs.com/package/@f/equal-array
- Repository: https://github.com/micro-js/equal-array
- Homepage: https://github.com/micro-js/equal-array#readme
- Issues: https://github.com/micro-js/equal-array/issues
- npm.io page: https://npm.io/package/@f/equal-array

## Recent versions

- 1.2.2 (latest) — 2016-03-03

## README

# equal-array

[![Build status][travis-image]][travis-url]
[![Git tag][git-image]][git-url]
[![NPM version][npm-image]][npm-url]
[![Code style][standard-image]][standard-url]

Check if two arrays have shallow equality

## Installation

    $ npm install @f/equal-array

## Usage

```js
var equal = require('@f/equal-array')

equal([1, 2], [1, 2]) // => true
equal([1, 2], [1, 2, 3]) // => false

```

## API

### equal(arr1, arr2)

- `arr1` - First array.
- `arr2` - Second array.

**Returns:** Boolean.

## License

MIT

[travis-image]: https://img.shields.io/travis/micro-js/equal-array.svg?style=flat-square
[travis-url]: https://travis-ci.org/micro-js/equal-array
[git-image]: https://img.shields.io/github/tag/micro-js/equal-array.svg
[git-url]: https://github.com/micro-js/equal-array
[standard-image]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat
[standard-url]: https://github.com/feross/standard
[npm-image]: https://img.shields.io/npm/v/@f/equal-array.svg?style=flat-square
[npm-url]: https://npmjs.org/package/@f/equal-array

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