Skip to content

v3.2.0

Compare
Choose a tag to compare
@mobily mobily released this 10 Dec 18:48
· 228 commits to master since this release

This version provides much better support for the point-free style. For instance, the following should not throw an error in TypeScript:

A.reduce([1, 2, 3], 0, N.add)
A.reduce(['hello', 'world'], '', S.concat)
A.filter(['hello', 'world'], S.startsWith('h'))
  • ✨ added O.tap
  • ✨ added R.tap
  • ✨ added A.tap