array-union

March 1, 2021 ยท View on GitHub

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.