Creates a generator of unique values from all given arrays using Set for equality comparisons.
Set
[...union([2], [1, 2])]// [2, 1]
Rest
The arrays to perform union on.
Generated using TypeDoc
Creates a generator of unique values from all given arrays using
Set
for equality comparisons.Example
See