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

12 行
358 B

  1. 'use strict';
  2. var util = require('util');
  3. var currentlyUnhandled = require('currently-unhandled');
  4. // WARNING: This undocumented API is subject to change.
  5. module.exports = util.deprecate(function (process) {
  6. return {
  7. currentlyUnhandled: currentlyUnhandled(process)
  8. };
  9. }, 'loudRejection/api is deprecated. Use the currently-unhandled module instead.');