bigint-crypto-utils/node_modules/reduce-unique
juanelas c29b520108 JS Standard. Some fixes with the test. Better structure 2020-04-06 13:17:22 +02:00
..
.travis.yml JS Standard. Some fixes with the test. Better structure 2020-04-06 13:17:22 +02:00
LICENSE JS Standard. Some fixes with the test. Better structure 2020-04-06 13:17:22 +02:00
README.hbs JS Standard. Some fixes with the test. Better structure 2020-04-06 13:17:22 +02:00
README.md JS Standard. Some fixes with the test. Better structure 2020-04-06 13:17:22 +02:00
index.js JS Standard. Some fixes with the test. Better structure 2020-04-06 13:17:22 +02:00
package.json JS Standard. Some fixes with the test. Better structure 2020-04-06 13:17:22 +02:00
test.js JS Standard. Some fixes with the test. Better structure 2020-04-06 13:17:22 +02:00

README.md

view on npm npm module downloads Build Status Dependency Status js-standard-style

reduce-unique

Reduce an array to unique values, optionally into a separate array.

Example

> const unique = require('reduce-unique')

> const arr = [ 1, 3, 8, 3, 1, 2, 1, 9, 3, 3 ]

> arr.reduce(unique)
[ 1, 3, 8, 2, 9 ]

> arr.reduce(unique, [ 'one', 'two' ])
[ 'one', 'two', 1, 3, 8, 2, 9 ]

> arr.reduce([ 3 ])
3

© 2016-18 Lloyd Brookes <75pound@gmail.com>. Documented by jsdoc-to-markdown.