@lucid-softworks/array-union
v0.1.0
Published
Create the ordered unique union of multiple arrays.
Maintainers
Readme
@lucid-softworks/array-union
Create the ordered unique union of any number of arrays using Set identity.
import { union } from "@lucid-softworks/array-union";
union([1, 2], [2, 3]); // [1, 2, 3]