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

index.js 208 B

12345678910
  1. /**
  2. * Just run the callback through setImmediate, so that it appears
  3. * asynchronous, even when unnecessary.
  4. */
  5. function ensure(modules, callback) {
  6. setImmediate(callback);
  7. }
  8. module.exports = ensure;