ramda-adjunct
ramda-adjunct copied to clipboard
rmap
Is your feature request related to a problem? Please describe.
Maps list of functions to a value
Describe the solution you'd like
const rmap = R.curryN(2, (val, fns) {
return R.map(R.applyTo(val), fns)
});
Describe alternatives you've considered
Additional context The concept is part of ramda-extended