(func)
| 25 | /////////////////////////////////////////////////////////////////////////////// |
| 26 | |
| 27 | function asyncCallback(func) { |
| 28 | return function () { |
| 29 | var that = this; |
| 30 | var args = arguments; |
| 31 | setTimeout(function () { func.apply(that, args); }, 0); |
| 32 | }; |
| 33 | } |
| 34 | |
| 35 | function async(func) { |
| 36 | var that = this; |
nothing calls this directly
no outgoing calls
no test coverage detected