reduce-unique
Reduce an array to unique values, optionally into a separate array.
Last updated 8 years ago by 75lb .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install reduce-unique 
SYNC missed versions from official npm registry.

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.

Current Tags

  • 2.0.1                                ...           latest (8 years ago)

3 Versions

  • 2.0.1                                ...           8 years ago
  • 2.0.0                                ...           8 years ago
  • 1.0.0                                ...           10 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (0)
None
Dev Dependencies (2)
Dependents (2)

Copyright 2013 - present © cnpmjs.org | Home |