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 
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 } }]