array-union
TypeScript icon, indicating that this package has built-in type declarations

3.0.1 • Public • Published

array-union

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

Install

$ npm install array-union

Usage

import arrayUnion from 'array-union';

arrayUnion([1, 1, 2, 3], [2, 3]);
//=> [1, 2, 3]

arrayUnion(['foo', 'foo', 'bar']);
//=> ['foo', 'bar']

arrayUnion(['🐱', '🦄', '🐻'], ['🦄', '🌈']);
//=> ['🐱', '🦄', '🐻', '🌈']

arrayUnion(['🐱', '🦄'], ['🐻', '🦄'], ['🐶', '🌈', '🌈']);
//=> ['🐱', '🦄', '🐻', '🐶', '🌈']

Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 3.0.1
    1,811,850
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 3.0.1
    1,811,850
  • 3.0.0
    128
  • 2.1.0
    30,355,082
  • 2.0.0
    2,004
  • 1.0.2
    8,238,504
  • 1.0.1
    1,144
  • 1.0.0
    2
  • 0.1.0
    20,457

Package Sidebar

Install

npm i array-union

Weekly Downloads

40,429,171

Version

3.0.1

License

MIT

Unpacked Size

3.59 kB

Total Files

5

Last publish

Collaborators

  • sindresorhus