blob: 2c4cb49d02828ab2306ab0d6344a75756b60e4c4 [file] [log] [blame] [edit]
export function curry(fn, args = []){
return (..._args) =>
(rest => rest.length >= fn.length ? fn(...rest) : curry(fn, rest))([
...args,
..._args,
])
}