JSPM

arr-unique

1.0.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 529
  • Score
    100M100P100Q98631F
  • License MIT

Get unique values of an array. Really, like deeply unique.

Package Exports

  • arr-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 (arr-unique) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

arr-unique Build Status

Get deep unique values of an array.

Install

$ npm install --save arr-unique

Usage

const arr = [
  { a: { b: 2 } },
  { a: { b: 2 } },
  { a: { b: 3 } }
]
const unique1 = arrayUnique(arr);
//=> [{ a: { b: 2 } }, { a: { b: 3 } }]

const unique2 = arrayUnique({ a: { b: 2 } }, { a: { b: 2 } }, { a: { b: 3 } })
//=> [{ a: { b: 2 } }, { a: { b: 3 } }]