(existingPath, newPath)
| 86 | ) |
| 87 | |
| 88 | const link: FileSystem.FileSystem["link"] = (existingPath, newPath) => |
| 89 | tryPromise("link", existingPath, () => Deno.link(existingPath, newPath)) |
| 90 | |
| 91 | const makeDirectory: FileSystem.FileSystem["makeDirectory"] = (path, options) => |
| 92 | tryPromise("makeDirectory", path, () => |
nothing calls this directly
no test coverage detected