(code)
| 57 | } |
| 58 | |
| 59 | function getUnsignedExitCode(code) { |
| 60 | return code != null && code < 0 ? (code >>> 0) : code |
| 61 | } |
| 62 | |
| 63 | function isWindowsNativeCrashCode(code) { |
| 64 | const unsignedCode = getUnsignedExitCode(code) |
no outgoing calls
no test coverage detected