Socket
Socket
Sign inDemoInstall

array-union

Package Overview
Dependencies
1
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    array-union

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


Version published
Weekly downloads
42M
decreased by-0.93%
Maintainers
1
Install size
7.76 kB
Created
Weekly downloads
 

Package description

What is array-union?

The array-union package is designed to create an array of unique values, in order, from all given arrays. It's particularly useful for combining arrays while removing duplicate entries, ensuring that the resulting array contains only unique items.

What are array-union's main functionalities?

Creating a union of arrays

This feature allows you to combine multiple arrays into one array with unique values, effectively removing duplicates.

const arrayUnion = require('array-union');
const result = arrayUnion([1, 2], [2, 3], [3, 4]);
console.log(result); // Output: [1, 2, 3, 4]

Other packages similar to array-union

Readme

Source

array-union Build Status

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

Install

$ npm install --save array-union

Usage

const arrayUnion = require('array-union');

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

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

License

MIT © Sindre Sorhus

Keywords

FAQs

Last updated on 16 Jun 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc