# arr-unique

> Get unique values of an array. Really, like deeply unique.

Latest version **1.0.2** (published 2017-04-09) · MIT license · 0 weekly downloads

## Install

```sh
npm install arr-unique
pnpm add arr-unique
yarn add arr-unique
bun add arr-unique
```

## 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.2 |
| Published | 2017-04-09 |
| First published | 2017-04-09 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Matic Zavadlal |
| Maintainers | maticzav |
| Keywords | arr, array, array-unique, unique, array-uniq, array-deep-unique, array-deep, deep, functional |

## Links

- npm: https://www.npmjs.com/package/arr-unique
- Repository: https://github.com/maticzav/arr-unique
- Homepage: https://github.com/maticzav/arr-unique#readme
- Issues: https://github.com/maticzav/arr-unique/issues
- npm.io page: https://npm.io/package/arr-unique

## Dependencies (1)

- [deep-equal](https://npm.io/package/deep-equal.md) ^1.0.1

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 1.0.2 (latest) — 2017-04-09
- 1.0.1 — 2017-04-09
- 1.0.0 — 2017-04-09

## README

# arr-unique [![Build Status](https://travis-ci.org/maticzav/arr-unique.svg?branch=master)](https://travis-ci.org/maticzav/arr-unique)

> Get deep unique values of an array.

## Install

```
$ npm install --save arr-unique
```


## Usage

```js
const arr = [
  { a: { b: 2 } },
  { a: { b: 2 } },
  { a: { b: 3 } }
]
const unique1 = arrayUnique(arr);
//=> [{ a: { b: 2 } }, { a: { b: 3 } }]

const unique2 = arrayUnique({ a: { b: 2 } }, { a: { b: 2 } }, { a: { b: 3 } })
//=> [{ a: { b: 2 } }, { a: { b: 3 } }]

```

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