node/tools/eslint/node_modules/array-uniq
Rich Trott d7ce99214d tools: update ESLint, fix unused vars bug
Update ESLint to 3.0.0. This includes an enhancement to `no-unused-vars`
such that it finds a few instances in our code base that it did not find
previously (fixed in previous commits readying this for landing).

PR-URL: https://github.com/nodejs/node/pull/7601
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
2016-07-14 12:44:58 -07:00
..
index.js tools: update ESLint, fix unused vars bug 2016-07-14 12:44:58 -07:00
license tools: update ESLint, fix unused vars bug 2016-07-14 12:44:58 -07:00
package.json tools: update ESLint, fix unused vars bug 2016-07-14 12:44:58 -07:00
readme.md tools: update ESLint, fix unused vars bug 2016-07-14 12:44:58 -07:00

array-uniq Build Status

Create an array without duplicates

It's already pretty fast, but will be much faster when Set becomes available in V8 (especially with large arrays).

Install

$ npm install --save array-uniq

Usage

const arrayUniq = require('array-uniq');

arrayUniq([1, 1, 2, 3, 3]);
//=> [1, 2, 3]

arrayUniq(['foo', 'foo', 'bar', 'foo']);
//=> ['foo', 'bar']

License

MIT © Sindre Sorhus