| Leo Repp | 58b9f11 | 2021-11-22 11:57:47 +0100 | [diff] [blame^] | 1 | 'use strict'; |
| 2 | var util = require('util'); | ||||
| 3 | var currentlyUnhandled = require('currently-unhandled'); | ||||
| 4 | |||||
| 5 | // WARNING: This undocumented API is subject to change. | ||||
| 6 | |||||
| 7 | module.exports = util.deprecate(function (process) { | ||||
| 8 | return { | ||||
| 9 | currentlyUnhandled: currentlyUnhandled(process) | ||||
| 10 | }; | ||||
| 11 | }, 'loudRejection/api is deprecated. Use the currently-unhandled module instead.'); | ||||