UNPKG

dead-simple-curry

Version:
8 lines (7 loc) 204 B
module.exports = function (fn) { return function curried(...args) { return args.length >= fn.length ? fn.call(this, ...args) : (...rest) => curried.call(this, ...args, ...rest); }; };