@defunctzombie/uniq-component
v1.0.0
Published
Remove repeated elements of an Array
Downloads
4
Readme
Uniq
Remove repeated elements of an Array
Installation
$ npm install uniq-component
$ component install yields/uniq
API
uniq(arr)
var uniq = require('uniq');
var arr = [1, 2, 3, 1, 2, 3, 1, 2, 3];
uniq(arr); // -> [1, 2, 3]
uniq(arr, select)
var uniq = require('uniq');
var arr = [1, 2, 3, 1, 2, 3, 1, 2, 3];
uniq(arr, [1, 3]); // // remove specific elements -> [1, 2, 3, 2, 2]
Tests
Download testing dependecies
npm install
Run tests
make test
License
MIT