项目原始demo,不改动
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。
 
 
 
 

13 行
250 B

  1. 'use strict';
  2. var core = require('./core');
  3. module.exports = function (p) {
  4. p = p || process;
  5. var c = core();
  6. p.on('unhandledRejection', c.onUnhandledRejection);
  7. p.on('rejectionHandled', c.onRejectionHandled);
  8. return c.currentlyUnhandled;
  9. };