(error: unknown)
| 29 | } |
| 30 | |
| 31 | export function isErrnoENOENT(error: unknown): boolean { |
| 32 | return isErrnoException(error, 'ENOENT') |
| 33 | } |
| 34 | |
| 35 | export function isErrnoENOTDIR(error: unknown): boolean { |
| 36 | return isErrnoException(error, 'ENOTDIR') |
no test coverage detected