CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
readme.md35 linesDownload Raw Back to array-union
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 arrays4 5 6## Install7 8```9$ npm install array-union10```11 12 13## Usage14 15```js16const arrayUnion = require('array-union');17 18arrayUnion([1, 1, 2, 3], [2, 3]);19//=> [1, 2, 3]20 21arrayUnion(['foo', 'foo', 'bar']);22//=> ['foo', 'bar']23 24arrayUnion(['๐Ÿฑ', '๐Ÿฆ„', '๐Ÿป'], ['๐Ÿฆ„', '๐ŸŒˆ']);25//=> ['๐Ÿฑ', '๐Ÿฆ„', '๐Ÿป', '๐ŸŒˆ']26 27arrayUnion(['๐Ÿฑ', '๐Ÿฆ„'], ['๐Ÿป', '๐Ÿฆ„'], ['๐Ÿถ', '๐ŸŒˆ', '๐ŸŒˆ']);28//=> ['๐Ÿฑ', '๐Ÿฆ„', '๐Ÿป', '๐Ÿถ', '๐ŸŒˆ']29```30 31 32## License33 34MIT ยฉ [Sindre Sorhus](https://sindresorhus.com)35 
basant307/AI_Governance_Project ยท CoolFace