Package Exports
- uniq-with
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 (uniq-with) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
uniq-with
Remove duplicates based on a predicate function.
Installation
$ npm install uniq-withExample
const uniqWith = require('uniq-with')
const data = [
{ id: 1 },
{ id: 5 },
{ id: 2 },
{ id: 2 },
{ id: 2 },
{ id: 5 }
]
console.log(uniqWith((a, b) => a.id === b.id, data))
// ->
// [
// { id: 1 },
// { id: 5 },
// { id: 2 }
// ]Tests
$ npm test