| Leo Repp | 58b9f11 | 2021-11-22 11:57:47 +0100 | [diff] [blame^] | 1 | 'use strict'; |
| 2 | var core = require('./core'); | ||||
| 3 | |||||
| 4 | module.exports = function (p) { | ||||
| 5 | p = p || process; | ||||
| 6 | var c = core(); | ||||
| 7 | |||||
| 8 | p.on('unhandledRejection', c.onUnhandledRejection); | ||||
| 9 | p.on('rejectionHandled', c.onRejectionHandled); | ||||
| 10 | |||||
| 11 | return c.currentlyUnhandled; | ||||
| 12 | }; | ||||