Package Exports
- array-no-repeat
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 (array-no-repeat) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
array-no-repeat 
Create an array of unique values, in order, from the input arrays.
Install
$ npm install --save array-no-repeat
Usage
const unique = require('array-no-repeat');
unique([1, 2, 3]);
//=> [1, 2, 3]
unique(['foo', 'foo', 'bar']);
//=> ['foo', 'bar']
License
MIT © Vivek Poddar