1.0.0 • Published 10 years ago

@defunctzombie/uniq-component v1.0.0

Weekly downloads
1
License
-
Repository
-
Last release
10 years ago

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