This repository has been archived by the owner on Jan 22, 2023. It is now read-only.
v0.19.0
Pre-release
Pre-release
Migration path
mapValues
has been deprecated becausemap
now supports objects. Replace
usage ofmapValues
withmap
.identical
now implements SameValueZero semantics. The only breaking change here is thatNaN
is now treated as identical toNaN
.
Features
- Added
intersection
. - Added
match
. - Added
pad
. - Added
padLeft
. - Added
padRight
. - Added
unique
.
Fixes
- Functions with an arity > 3 now properly report their arity when partially applied.
Improvements
map
now supports plain objects.- Curried functions now provide better stringified representations for a better debugging experience.
identical
now implements SameValueZero semantics. This affects any function, such asequals
, that performs identity checks.