Skip to content

Releases: funkia/list

v2.0.19

09 Oct 17:35
Compare
Choose a tag to compare

Bugfixes

  • Add head as an alias for first. 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.19

v2.0.18

13 Mar 11:44
Compare
Choose a tag to compare
  • This release adds a toJSON method to List. When used in combination with the JSON.stringify function a list will now serialize into a JSON array.
  • List is now tested using model based testing thanks to @dubzzz and the fast-check library.

v2.0.12

20 May 14:35
Compare
Choose a tag to compare

New features

v2.0.7

18 Mar 15:45
Compare
Choose a tag to compare

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, and sortWith.

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.

2.0.4

06 Mar 13:56
Compare
Choose a tag to compare

Adds three new functions: isList, zip and zipWith.