Skip to content

v0.0.2

Compare
Choose a tag to compare
@lazarljubenovic lazarljubenovic released this 03 Nov 16:35
· 6 commits to master since this release

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 return Operator<T, [T] | [T, T] | [T, T, T]> instead of Operator<T, Array<T>>.