(path, length)
| 385 | tryPromise("symlink", target, () => Deno.symlink(target, path)) |
| 386 | |
| 387 | const truncate: FileSystem.FileSystem["truncate"] = (path, length) => |
| 388 | tryPromise("truncate", path, () => Deno.truncate(path, length === undefined ? undefined : Number(length))) |
| 389 | |
| 390 | const utimes: FileSystem.FileSystem["utimes"] = (path, atime, mtime) => |
| 391 | tryPromise("utimes", path, () => Deno.utime(path, atime, mtime)) |
nothing calls this directly
no test coverage detected