Dashboard sipadu mbip
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

index.js 222B

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;