(error: unknown)
| 33 | } |
| 34 | |
| 35 | export function isErrnoENOTDIR(error: unknown): boolean { |
| 36 | return isErrnoException(error, 'ENOTDIR') |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * General-purpose path resolution with proper error handling. |
nothing calls this directly
no test coverage detected