(path, uid, gid)
| 73 | const chmod: FileSystem.FileSystem["chmod"] = (path, mode) => tryPromise("chmod", path, () => Deno.chmod(path, mode)) |
| 74 | |
| 75 | const chown: FileSystem.FileSystem["chown"] = (path, uid, gid) => |
| 76 | tryPromise("chown", path, () => Deno.chown(path, uid, gid)) |
| 77 | |
| 78 | const glob: FileSystem.FileSystem["glob"] = (pattern, options) => |
| 79 | Effect.map( |
nothing calls this directly
no test coverage detected