🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

array-union

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

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

3.0.1
latest
Source
npm
Version published
Weekly downloads
49M
1.16%
Maintainers
1
Weekly downloads
 
Created

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

Keywords

array

FAQs

Package last updated on 01 Mar 2021

Did you know?

Socket

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