You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

api.js 358B

1234567891011
  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.');