Skip to content

v0.50.0

Choose a tag to compare

@ascartabelli ascartabelli released this 08 Feb 14:00
· 101 commits to master since this release
  • Renamed is to areSame and isSVZ to areSVZ. The old names are now used for curried version of those functions
  • Removed isNot
  • Renamed isGT, isGTE, isLT and isLTE to gt, gte, lt, lte. The old names are now used for right curried versions of these functions.
  • compose and pipe now build a function throwing an exception if they are called without arguments
  • Renamed add to sum. add is now used as a curried version of sum.
  • Added deduct as a right curried version of subtract
  • Added multiplyBy as a curried version of multiply
  • Added divideBy as a right curried version of divide
  • Added optimized currying for functions with arity 2 and 3
  • Performance improvement for compose and pipe
  • Split "object.js" in two files for easier management
  • Added a _makeArrayFlattener private function to group common behavior of the public flattening functions
  • Updated dev dependencies
  • Updated doc comments and tests