* --unhandled-rejections=none: * Emit 'unhandledRejection', but do not emit any warning. * @type {UnhandledRejectionsModeHandler}
(promise, promiseInfo)
| 291 | * @type {UnhandledRejectionsModeHandler} |
| 292 | */ |
| 293 | function ignoreUnhandledRejectionsMode(promise, promiseInfo) { |
| 294 | emitUnhandledRejection(promise, promiseInfo); |
| 295 | return true; |
| 296 | } |
| 297 | |
| 298 | /** |
| 299 | * --unhandled-rejections=warn: |
nothing calls this directly
no test coverage detected