(handle: { unref?: () => void } | null)
| 44 | } |
| 45 | |
| 46 | function unrefHandle(handle: { unref?: () => void } | null): void { |
| 47 | handle?.unref?.(); |
| 48 | } |
| 49 | |
| 50 | export function isBrokenPipeError(error: unknown): boolean { |
| 51 | if (!error || typeof error !== "object") return false; |
no outgoing calls
no test coverage detected