source: trip-planner-front/node_modules/del/node_modules/array-union/readme.md@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 513 bytes
Line 
1# array-union [![Build Status](https://travis-ci.org/sindresorhus/array-union.svg?branch=master)](https://travis-ci.org/sindresorhus/array-union)
2
3> Create an array of unique values, in order, from the input arrays
4
5
6## Install
7
8```
9$ npm install --save array-union
10```
11
12
13## Usage
14
15```js
16const arrayUnion = require('array-union');
17
18arrayUnion([1, 1, 2, 3], [2, 3]);
19//=> [1, 2, 3]
20
21arrayUnion(['foo', 'foo', 'bar'], ['foo']);
22//=> ['foo', 'bar']
23```
24
25
26## License
27
28MIT © [Sindre Sorhus](https://sindresorhus.com)
Note: See TracBrowser for help on using the repository browser.