array-unique icon indicating copy to clipboard operation
array-unique copied to clipboard

Return an array free of duplicate values. Very fast implementation.

Results 5 array-unique issues
Sort by recently updated
recently updated
newest added
trafficstars

Added power support for the travis.yml file with ppc64le. This is part of the Ubuntu distribution for ppc64le. This helps us simplify testing later when distributions are re-building and re-releasing

- There where no benchmarks to be found. - installing and executing the function didn't show any numbers (#7) - updating benchmarked and executing the test was alarming too me...

output from running benchmarks: (where are the numbers? how to best run them?) ```bash array-unique git:(master) ✗ node benchmark #1: long filter: filter2: forIn: linearSearch01: setImmutable: set: whileHash: while: fastest...

Well, currently using functions seem to be not optimal; moreover, there is no `immutable` API in `arr-uniq`. ``` math@ubuntu:~/git/array-unique$ js benchmark/index.js Benchmarking: (3 of 3) · long · med ·...

Same as https://github.com/jonschlinkert/array-unique/blob/master/benchmark/code/while.js, but preserves the order of elements in result array, which is nice to have. Performance is almost as good as while.js BTW, is there any reason the...