JSPM

reduce-unique

2.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 195828
  • Score
    100M100P100Q163048F
  • License MIT

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

Package Exports

  • reduce-unique

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (reduce-unique) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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.