Releases: funkia/list
Releases · funkia/list
v2.0.19
Bugfixes
- Add
head
as an alias forfirst
. This was already mentioned in the documentation but not implemented. Thanks to @shomodj for finding and reporting this bug.
Commits
v2.0.18
v2.0.12
New features
- This release adds a healthy amount of new useful functions:
lastIndexOf
,takeLastWhile
,findLast
,splitEvery
,splitWhen
,intersperse
,dropRepeats
,dropRepeatsWith
,scan
. - The npm package no longer includes source maps and source code. Thanks to this the install size of the package shrank from 652 kB to 197 kB.
v2.0.7
New features
- Two new API varians of the library. A curried variant and a variant with chainable methods. See more here.
- New functions added:
sort
,sortBy
, andsortWith
.
Deprecation
The list/ramda
export is now deprecated. The new list/curried
should be used instead. The new list/curried
exports functions that are curried with an internal curry function. This makes it dependency-free compared to the old one that relied on Ramda.