選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。
|
- 'use strict';
- var core = require('./core');
-
- module.exports = function (p) {
- p = p || process;
- var c = core();
-
- p.on('unhandledRejection', c.onUnhandledRejection);
- p.on('rejectionHandled', c.onRejectionHandled);
-
- return c.currentlyUnhandled;
- };
|