index.js 222 B

12345678
  1. var core = require('./lib/core');
  2. var async = require('./lib/async');
  3. async.core = core;
  4. async.isCore = function isCore(x) { return core[x]; };
  5. async.sync = require('./lib/sync');
  6. exports = async;
  7. module.exports = async;