Skip to content

Commit 2a1072b

Browse files
authored
Create 2632-curry.js
1 parent c071774 commit 2a1072b

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

javascript/2632-curry.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/**
2+
* @param {Function} fn
3+
* @return {Function}
4+
*/
5+
var curry = function (fn) {
6+
let accum = [];
7+
return function curried(...args) {
8+
for (let arg of args)
9+
accum.push(arg);
10+
if (accum.length === fn.length)
11+
return fn(...accum);
12+
return curried;
13+
}
14+
};
15+
16+
/**
17+
* function sum(a, b) { return a + b; }
18+
* const csum = curry(sum);
19+
* csum(1)(2) // 3
20+
*/

0 commit comments

Comments
 (0)