(error: unknown)
| 46 | import * as NodeStream from "./NodeStream.ts" |
| 47 | |
| 48 | const toError = (error: unknown): Error => |
| 49 | error instanceof globalThis.Error |
| 50 | ? error |
| 51 | : new globalThis.Error(String(error)) |
| 52 | |
| 53 | const toPlatformError = ( |
| 54 | method: string, |
no test coverage detected