Package Exports
- array-filter-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 (array-filter-unique) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
array-filter-unique
JavaScript array.filter() compatible unique filter
As all unique libraries are used as a function and not within the easily stackable and immutable arr.format() style I made my own.
Install
$ npm install array-filter-uniqueUsage
const arrayFilterUnique = require('array-filter-unique');
['a', 'a', 'b', 'c']
.filter(arrayFilterUnique());
//=> ['a', 'b', 'c']
[{name: 'Alice', …}, {name: 'Peter', …}, {name: 'Alice', …}}]
.filter(arrayFilterUnique(o => o.name));
//=> [{name: 'Alice', …}, {name: 'Peter', …}]API
arrayFilterUnique([selector])
selector
Type: item => string
Select what to check in the given item
License
MIT © Edgar Toll