()
| 74 | |
| 75 | // node |
| 76 | function useNextTick() { |
| 77 | // node version 0.10.x displays a deprecation warning when nextTick is used recursively |
| 78 | // see https://github.com/cujojs/when/issues/410 for details |
| 79 | return function () { |
| 80 | return process.nextTick(flush); |
| 81 | }; |
| 82 | } |
| 83 | |
| 84 | // vertx |
| 85 | function useVertxTimer() { |