12 lines
356 B
JavaScript
12 lines
356 B
JavaScript
import { flattenDepth } from './flattenDepth.mjs';
|
|
import { uniq } from '../../array/uniq.mjs';
|
|
import { isArrayLikeObject } from '../predicate/isArrayLikeObject.mjs';
|
|
|
|
function union(...arrays) {
|
|
const validArrays = arrays.filter(isArrayLikeObject);
|
|
const flattened = flattenDepth(validArrays, 1);
|
|
return uniq(flattened);
|
|
}
|
|
|
|
export { union };
|