Releases: brcrista/JavaScript-Helpers
Releases · brcrista/JavaScript-Helpers
v3.0.0
v2.0.0
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);