array-unique
Advanced tools
Remove duplicate values from an array. Fastest ES5 implementation.
Weekly downloads
Readme
Remove duplicate values from an array. Fastest ES5 implementation.
Install with npm:
$ npm install --save array-unique
var unique = require('array-unique');
var arr = ['a', 'b', 'c', 'c'];
console.log(unique(arr)) //=> ['a', 'b', 'c']
console.log(arr) //=> ['a', 'b', 'c']
/* The above modifies the input array. To prevent that at a slight performance cost: */
var unique = require("array-unique").immutable;
var arr = ['a', 'b', 'c', 'c'];
console.log(unique(arr)) //=> ['a', 'b', 'c']
console.log(arr) //=> ['a', 'b', 'c', 'c']
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
(This document was generated by verb-generate-readme (a verb generator), please don't edit the readme directly. Any changes to the readme must be made in .verb.md.)
To generate the readme and API documentation with verb:
$ npm install -g verb verb-generate-readme && verb
Install dev dependencies:
$ npm install -d && npm test
Jon Schlinkert
Copyright © 2016, Jon Schlinkert. Released under the MIT license.
This file was generated by verb-generate-readme, v0.1.28, on July 31, 2016.
Remove duplicate values from an array. Fastest ES5 implementation.
The npm package array-unique receives a total of 17,808,174 weekly downloads. As such, array-unique popularity was classified as popular.
We found that array-unique demonstrated a not healthy version release cadence and project activity. It has 2 open source maintainers collaborating on the project.