(f)
| 1191 | /* -----[ Utilities ]----- */ |
| 1192 | |
| 1193 | function curry(f) { |
| 1194 | var args = slice(arguments, 1); |
| 1195 | return function() { return f.apply(this, args.concat(slice(arguments))); }; |
| 1196 | }; |
| 1197 | |
| 1198 | function prog1(ret) { |
| 1199 | if (ret instanceof Function) |
no test coverage detected
searching dependent graphs…