partialRight
Creates a function that invokes fn
with partials
appended to the arguments it receives.
- Use the spread operator (
...
) to appendpartials
to the list of arguments offn
.
Creates a function that invokes fn
with partials
appended to the arguments it receives.
...
) to append partials
to the list of arguments of fn
.