(method: string)
| 26 | import { handleErrnoException } from "./internal/utils.ts" |
| 27 | |
| 28 | const handleBadArgument = (method: string) => (err: unknown) => |
| 29 | Error.badArgument({ |
| 30 | module: "FileSystem", |
| 31 | method, |
| 32 | description: (err as Error).message ?? String(err) |
| 33 | }) |
| 34 | |
| 35 | // == access |
| 36 |
no test coverage detected