compose-with

v0.9.6arrow_drop_down
v0.9.6
STATUS
Passing
DOWNLOADS
2
VISIBILITY
Public
PUBLISHED
5 years ago
SIZE
2 KB
Performs right-to-left function composition using transforming function.
1 contributor
Install compose-with as a package?
Copied
npm i @bit/justin-capalbo.ramda.compose-with
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.cloud
Component Example
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
import
any of the 1 million components
and packages in Bit or NPM to the example.
import Button from '@bit/grommet.grommet.button';
import Lodash from 'lodash';
toggle layout
No preview available
modifieddraft
chevron_left
chevron_right
composeWith (
null.null.null.functions:...Function
) : Function

Performs right-to-left function composition using transforming function. The rightmost function may have any arity; the remaining functions must be unary.

Note: The result of compose is not automatically curried.

Example
const composeWhileNotNil = R.composeWith((f, res) => R.isNil(res) ? res : f(res));

     composeWhileNotNil([R.inc, R.prop('age')])({age: 1}) //=> 2
     composeWhileNotNil([R.inc, R.prop('age')])({}) //=> undefined
Argument
null.null.null.functions: ...Function

The functions to compose

Returns
Function

Help and resources