Weekly downloads
Readme
Minimal function composition implementation
cumpá
in some Italian :it: dialects meansfellow
import compose from 'cumpa'
const add2 = x => x + 2
const multiplyBy3 = x => x * 3
const add2AndMultiplyBy3 = compose(multiplyBy3, add2)
console.log(add2AndMultiplyBy3(1)) // ((1 + 2) * 3) = 9
Similar to compose but performs from left-to-right function composition.
see also
fns
...[function] ) - list of unary fynctionsReturns any result of the computation
Performs right-to-left function composition.
Use Array.prototype.reduce() to perform right-to-left function composition.
The last (rightmost) function can accept one or more arguments; the remaining functions must be unary.
source code
fns
...[function] ) - list of unary fynctionsReturns any result of the computation
FAQs
Minimal function composition implementation
The npm package cumpa receives a total of 589 weekly downloads. As such, cumpa popularity was classified as not popular.
We found that cumpa demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.