(x, y, callback)
| 320 | |
| 321 | 'should accept leading arguments': function(done) { |
| 322 | function fancySum(x, y, callback) { |
| 323 | callback(x + y); |
| 324 | } |
| 325 | |
| 326 | var partiallyApplied = callbacks.lift(fancySum, 5); |
| 327 |
nothing calls this directly
no test coverage detected
searching dependent graphs…