arr-union
Combines a list of arrays, returning a single array with unique values, using strict equality for comparisons.
natural-orderby
Lightweight and performant natural sorting of arrays and collections by differentiating between unicode characters, numbers, dates, etc.
dup
Initialize an array of arrays to a constant
chunk
Chunk converts arrays like `[1,2,3,4,5]` into arrays of arrays like `[[1,2], [3,4], [5]]`.