To use the curryRight
function from the lodash library in TypeScript, first install the lodash library using npm:
index.ts26 chars2 lines
Then, import the curryRight
function into your TypeScript file:
index.ts29 chars2 lines
Finally, use the curryRight
function:
index.ts292 chars12 lines
In the example above, the greet
function is curried from right to left using _.curryRight
, creating a new function greetCurried
with its arguments reversed. The resulting sayHello
and sayHi
functions have Hello
and Hi
pre-set as the first arguments, respectively, so they can be called with just the name argument.
gistlibby LogSnag