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
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.