Skip to content

v2.0.0

Compare
Choose a tag to compare
@andreidmt andreidmt released this 26 Aug 20:49
· 221 commits to master since this release

2.0.0 (2020-08-26)

Features

  • Update "map" to allow curried and un-curried calling. (eea3954)

BREAKING CHANGES

  • Multiple functions can be passed if wrapped in array.
// old
map(inc, inc)([1, 2])

// new
map([inc, inc], [1, 2])