rDrama/node_modules/array-union
Aevann1 67a1595b9b fdsfd 2021-12-13 22:28:32 +00:00
..
index.d.ts fdsfd 2021-12-13 22:28:32 +00:00
index.js fdsfd 2021-12-13 22:28:32 +00:00
license fdsfd 2021-12-13 22:28:32 +00:00
package.json fdsfd 2021-12-13 22:28:32 +00:00
readme.md fdsfd 2021-12-13 22:28:32 +00:00

readme.md

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.