# unq-array

> Return a new array that doesnot contain duplicate values

Latest version **1.0.1** (published 2019-01-08) · MIT license · 0 weekly downloads

## Install

```sh
npm install unq-array
pnpm add unq-array
yarn add unq-array
bun add unq-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.0.1 |
| Published | 2019-01-08 |
| First published | 2019-01-08 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 2.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | wesley-qiu |
| Maintainers | wesley-qiu |
| Keywords | javascript, array, unique |

## Links

- npm: https://www.npmjs.com/package/unq-array
- Repository: https://github.com/wesley-qiu/array_unique
- Homepage: https://github.com/wesley-qiu/array_unique#readme
- Issues: https://github.com/wesley-qiu/array_unique/issues
- npm.io page: https://npm.io/package/unq-array

## 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.1 (latest) — 2019-01-08
- 1.0.0 — 2019-01-08

## README

# array_unique
Return a new array that doesnot contain duplicate values

## Get Package
```
npm install unq-array
```

## Usage
```javascript
const array_unique = require('unq-array')
var arr = [1, 2, 3, 4, 3, 4]
var new_arr = array_unique(arr) //[1, 2, 3, 4]
```

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