# create-array-equal

> Create equality function for arrays

Latest version **0.0.3** (published 2020-01-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install create-array-equal
pnpm add create-array-equal
yarn add create-array-equal
bun add create-array-equal
```

## 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.3 |
| Published | 2020-01-12 |
| First published | 2018-10-13 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 8.9.0 |
| Dependencies | 4 |
| Unpacked size | 2.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | Hoàng Văn Khải |
| Maintainers | khai96_ |
| Keywords | array, equal, factory |

## Links

- npm: https://www.npmjs.com/package/create-array-equal
- Repository: https://github.com/ksxnodemodules/nodemonorepo
- Homepage: https://github.com/ksxnodemodules/nodemonorepo#readme
- Issues: https://github.com/ksxnodemodules/nodemonorepo/issues
- npm.io page: https://npm.io/package/create-array-equal

## Dependencies (4)

- [tslib](https://npm.io/package/tslib.md) ^1.10.0
- [iter-tools](https://npm.io/package/iter-tools.md) ^6.2.6
- [@types/node](https://npm.io/package/@types/node.md) ^13.1.6
- [typescript-miscellaneous](https://npm.io/package/typescript-miscellaneous.md) ^0.1.1

## Recent versions

- 0.0.3 (latest) — 2020-01-12
- 0.0.2 — 2019-10-05
- 0.0.1 — 2018-11-21
- 0.0.0 — 2018-10-13

## README

# create-array-equal

Create equality function for arrays

## Usage

```javascript
import createArrayEqual from 'create-array-equal'
const arrayEqual = createArrayEqual((a, b) => a === b)
const a = arrayEqual([], []) // expect: true
const b = arrayEqual([0, 1], [0, 1]) // expect: true
const c = arrayEqual([0], [1]) // expect: false
const d = arrayEqual([0], [0, 1]) // expect: false
```

## License

[MIT](https://git.io/vhaEz) © [Hoàng Văn Khải](https://github.com/KSXGitHub)

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