Skip to content

Latest commit

 

History

History
59 lines (46 loc) · 1.48 KB

CHANGELOG.md

File metadata and controls

59 lines (46 loc) · 1.48 KB

Changelog

This file contains the changes made to the package

This sections are in descending order of the change date.

0.1.11 - 2023-06-04

Added

  • minimum and maximum functions for both Stream and AsyncStream.
  • allM and anyM functions that checks if all/any of the values that Stream generates is true.
  • cartesian function for both Stream and AsyncStream.
  • countBy function for both Stream and AsyncStream.
  • filterA function for Stream.
  • transpose function for both Stream and AsyncStream.

Changed

  • fp-ts and tslib dependencies are now peerDependencies.

0.1.10 - 2022-10-03

Changes

Updated README file example.

0.1.9 - 2022-09-30

Changes

Updated types to provide async functions

Now the following functions may also take functions that return Promise for their results:

  • comprehension
  • dropRightWhile
  • findFirstMap
  • findLastMap
  • flap
  • tail
  • apSeq
  • ap
  • filterMapWithIndex
  • filterMap
  • partitionMap
  • partitionMapWithIndex
  • unfold

Likewise the following instance implementations are updated:

  • ApplicativeSeq
  • Applicative
  • Filterable
  • Unfoldable

0.1.0 - 2022-09-26

Added initial commit