(fn, obj)
| 13 | * Add properties to a function using underscore |
| 14 | */ |
| 15 | var extendFn = function (fn, obj) { |
| 16 | return $.extend(fn, obj); |
| 17 | }; |
| 18 | |
| 19 | var passthrough = function (ready) { return ready(); }; |
| 20 | var defaultProcessor = function (source, resolve, reject) { |
no outgoing calls
no test coverage detected