Skip to content

Releases: brcrista/JavaScript-Helpers

v3.0.0

26 Jun 14:58
cb3e96f
Compare
Choose a tag to compare
  • Add iterable.count()
  • map, flatMap, filter, and reduce now all take a function as their first argument and the iterable as their second argument.

v2.0.0

04 Jul 19:24
c90c323
Compare
Choose a tag to compare

In v1, you had to access the submodules as properties of the main module:

const iterable = require('js-helpers').iterable;
const xs = iterable.range(0, 10);

Now, you can import the submodules directly. The old way is no longer supported.

const iterable = require('js-helpers/iterable');
const xs = jsHelpers.iterable.range(0, 10);

v1.0.0

04 Jul 18:24
0616ce0
Compare
Choose a tag to compare
v 1.0 (#7)

* Build an npm package

* Replace npm scripts with Makefile

* Fix broken tests

* Add 'package' Makefile target

* Bump to version 1.0

* Update Actions to use the Makefile