Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sindresorhus/array-union
Create an array of unique values, in order, from the input arrays
https://github.com/sindresorhus/array-union
Last synced: about 1 month ago
JSON representation
Create an array of unique values, in order, from the input arrays
- Host: GitHub
- URL: https://github.com/sindresorhus/array-union
- Owner: sindresorhus
- License: mit
- Created: 2014-06-19T15:34:45.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2021-03-01T18:43:16.000Z (over 3 years ago)
- Last Synced: 2024-03-22T08:05:07.455Z (8 months ago)
- Language: TypeScript
- Homepage:
- Size: 14.6 KB
- Stars: 74
- Watchers: 6
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Funding: .github/funding.yml
- License: license
- Security: .github/security.md
Awesome Lists containing this project
README
# array-union
> Create an array of unique values, in order, from the input arrays
## Install
```
$ npm install array-union
```## Usage
```js
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.