v0.0.2
0.0.2 (2023-11-03)
Improvements
Operators
chunk
-
When the
chunkSize
value is known at compile-time, the return type of the operator will now reflect that and return a suitable union of tuples instead of an array with a generic length.For example,
chunk(3)
will now returnOperator<T, [T] | [T, T] | [T, T, T]>
instead ofOperator<T, Array<T>>
.