()
| 46 | } |
| 47 | |
| 48 | export function uninstallCrashHandlers(): void { |
| 49 | if (!installed) return; |
| 50 | if (installedUncaughtHandler !== null) { |
| 51 | process.off('uncaughtExceptionMonitor', installedUncaughtHandler); |
| 52 | } |
| 53 | installedUncaughtHandler = null; |
| 54 | installed = false; |
| 55 | } |
| 56 | |
| 57 | function isAbortError(reason: unknown): boolean { |
| 58 | return ( |
no test coverage detected