UNPKG

rambda

Version:

Lightweight and faster alternative to Ramda with included TS definitions

8 lines (7 loc) 174 B
export function curry(fn, args = []){ return (..._args) => (rest => rest.length >= fn.length ? fn(...rest) : curry(fn, rest))([ ...args, ..._args, ]) }