(path, atime, mtime)
| 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)) |
| 392 | |
| 393 | const watchNative = ( |
| 394 | path: string, |
no test coverage detected