"use strict";

This commit is contained in:
Mihai Bazon
2012-10-02 12:45:31 +03:00
parent 211792757c
commit e1098b04a7
9 changed files with 18 additions and 0 deletions

View File

@@ -41,6 +41,8 @@
***********************************************************************/
"use strict";
function curry(f) {
var args = slice(arguments, 1);
return function() { return f.apply(this, args.concat(slice(arguments))); };