25 lines
803 B
JavaScript
25 lines
803 B
JavaScript
|
|
const require_uniq = require("./uniq.js");
|
||
|
|
//#region src/array/union.ts
|
||
|
|
/**
|
||
|
|
* Creates an array of unique values from all given arrays.
|
||
|
|
*
|
||
|
|
* This function takes two arrays, merges them into a single array, and returns a new array
|
||
|
|
* containing only the unique values from the merged array.
|
||
|
|
*
|
||
|
|
* @template T - The type of elements in the array.
|
||
|
|
* @param {T[]} arr1 - The first array to merge and filter for unique values.
|
||
|
|
* @param {T[]} arr2 - The second array to merge and filter for unique values.
|
||
|
|
* @returns {T[]} A new array of unique values.
|
||
|
|
*
|
||
|
|
* @example
|
||
|
|
* const array1 = [1, 2, 3];
|
||
|
|
* const array2 = [3, 4, 5];
|
||
|
|
* const result = union(array1, array2);
|
||
|
|
* // result will be [1, 2, 3, 4, 5]
|
||
|
|
*/
|
||
|
|
function union(arr1, arr2) {
|
||
|
|
return require_uniq.uniq(arr1.concat(arr2));
|
||
|
|
}
|
||
|
|
//#endregion
|
||
|
|
exports.union = union;
|