| 27 | } |
| 28 | |
| 29 | interface OpenDir { |
| 30 | entries: fs.Dirent[]; |
| 31 | path: string; |
| 32 | done: boolean; |
| 33 | } |
| 34 | |
| 35 | function statusFor(err: unknown): number { |
| 36 | const code = (err as { code?: string }).code; |
nothing calls this directly
no outgoing calls
no test coverage detected