(fromPath, toPath)
| 68 | })) |
| 69 | |
| 70 | const copyFile: FileSystem.FileSystem["copyFile"] = (fromPath, toPath) => |
| 71 | tryPromise("copyFile", fromPath, () => Deno.copyFile(fromPath, toPath)) |
| 72 | |
| 73 | const chmod: FileSystem.FileSystem["chmod"] = (path, mode) => tryPromise("chmod", path, () => Deno.chmod(path, mode)) |
| 74 |