JSPM

array-no-repeat

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 7
  • Score
    100M100P100Q25122F
  • License MIT

Create an array of unique values, in order, from the input arrays

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 Build Status

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