Results 1 comments of xcs

```javascript function curry(fn, args) { const { length } = fn; const params = args || []; return function() { const args = params.concat([].slice.call(arguments)); if (args.length < length) { return...