JSPM

uniq-with

0.1.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q25374F
  • License MIT

Remove duplicates based on a predicate function

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.

build status npm version dependency status license code style: standard

Installation

$ npm install uniq-with

Example

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 

License

MIT