(err: unknown)
| 28 | import { filesystem, path } from "./effect/app-node-platform" |
| 29 | |
| 30 | const toError = (err: unknown): Error => (err instanceof globalThis.Error ? err : new globalThis.Error(String(err))) |
| 31 | |
| 32 | const toTag = (err: NodeJS.ErrnoException): PlatformError.SystemErrorTag => { |
| 33 | switch (err.code) { |
no outgoing calls
no test coverage detected