blob: f6cd6a11363d5a0bd6fcf41741e3fce724c3a254 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2var util = require('util');
3var currentlyUnhandled = require('currently-unhandled');
4
5// WARNING: This undocumented API is subject to change.
6
7module.exports = util.deprecate(function (process) {
8 return {
9 currentlyUnhandled: currentlyUnhandled(process)
10 };
11}, 'loudRejection/api is deprecated. Use the currently-unhandled module instead.');