We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
map had to be rewritten from
map
const map = curry((f, arr) => arr.map(f));
to
const map = curry((f, arr) => arr.map((x) => f(x)));
This allows for partial application of each function within an array of functions.