Skip to content

Releases: mobily/ts-belt

v3.2.0

10 Dec 18:48
Compare
Choose a tag to compare

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

v3.1.1

09 Dec 23:30
Compare
Choose a tag to compare
  • 🐛 fixed arguments order of A.*WithIndex(index, value) and D.*WithKey(key, value) functions

v3.1.0

08 Dec 22:06
Compare
Choose a tag to compare
  • 🐛 fixed S.head return type
  • ✨ added S.trimEnd (@Dilven)
  • ✨ added S.trimStart (@Dilven)
  • ✨ added S.last (@Dilven)

v3.0.1

07 Dec 18:49
Compare
Choose a tag to compare
  • 🐛 fixed A.uniqBy signature (#1)

v3.0.0

05 Dec 23:04
Compare
Choose a tag to compare

Initial v3 implementation.