Package Exports
- unique-by
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 (unique-by) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
unique-by
Create a unique array of objects.
Example
var uniqueBy = require('unique-by');
// With a function
uniqueBy(arr, function getValue(obj) {
return obj.someKey;
});
// With a key string
uniqueBy(arr, 'someKey');Installation
npm install unique-by
Tests
npm test
NPM scripts
npm run coverThis runs the tests with code coveragenpm run lintThis will run the linter on your codenpm testThis will run the tests.npm run traceThis will run your tests in tracing mode.npm run travisThis is run by travis.CI to run your testsnpm run view-coverThis will show code coverage in a browser
Contributors
- Matt Morgan


