- Notifications
You must be signed in to change notification settings - Fork51
Releases: funkia/list
Releases · funkia/list
v2.0.19
Compare
Could not load tags
Nothing to show
{{ refName }}defaultLoading
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
Assets2
v2.0.18
Compare
Could not load tags
Nothing to show
{{ refName }}defaultLoading
- This release adds a
toJSON
method toList
. When used in combination with theJSON.stringify
function a list will now serialize into a JSON array. - List is now tested using model based testing thanks to@dubzzz and thefast-check library.
Assets2
v2.0.12
Compare
Could not load tags
Nothing to show
{{ refName }}defaultLoading
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.
Assets2
v2.0.7
Compare
Could not load tags
Nothing to show
{{ refName }}defaultLoading
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
Thelist/ramda
export is now deprecated. The newlist/curried
should be used instead. The newlist/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.