1 contributor
Like
Install curry-right as a package?
Copied
npm i @bit/lodash.lodash.curry-right
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.cloud
Component Example modifieddraft
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
and packages in Bit or NPM to the example. any of the 1 million componentstoggle layout
No preview available
chevron_left
chevron_right
curryRight (
func:
Function
,arity:
number?
,null-null
) : Function
This method is like _.curry
except that arguments are applied to func
in the manner of _.partialRight
instead of _.partial
.
The _.curryRight.placeholder
value, which defaults to _
in monolithic
builds, may be used as a placeholder for provided arguments.
Note: This method doesn’t set the “length” property of curried functions.
Example
Arguments
func:
Function
The function to curry.
arity:
number?
The arity of func
.
null-null
{Object} [guard] Enables use as an iteratee for methods like _.map
.
Returns
Function
Returns the new curried function.