ramda-adjunct icon indicating copy to clipboard operation
ramda-adjunct copied to clipboard

rmap

Open char0n opened this issue 5 years ago • 0 comments

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

char0n avatar Dec 24 '19 10:12 char0n