Show:
  1. /**
  2. Provides utilities for timed asynchronous callback execution.
  3. Y.soon is a setImmediate/process.nextTick/setTimeout wrapper.
  4. This module includes [asap.js](https://github.com/kriskowal/asap) for scheduling
  5. asynchronous tasks.
  6. @module timers
  7. @main timers
  8. @author Steven Olmsted
  9. **/
  10. // Hack. asap.js is written as a Node module and expects require, module and
  11. // global to be available in the module's scope.
  12. var module = {},
  13. global = Y.config.global;
  14. // `asap` only requires a `queue` module that is bundled into this same file.
  15. function require(mod) {
  16. return Queue;
  17. }