* Changes the access (`atime`) and modification (`mtime`) times of the * file stream resource. Given times are either in seconds (UNIX epoch * time) or as `Date` objects. * * @example Usage * ```ts ignore * import { open } from "@std/fs/unstable-open"; * using file = await open(
(atime: number | Date, mtime: number | Date)
| 517 | * ``` |
| 518 | */ |
| 519 | utime(atime: number | Date, mtime: number | Date): Promise<void>; |
| 520 | /** |
| 521 | * Synchronously changes the access (`atime`) and modification (`mtime`) times |
| 522 | * of the file stream resource. Given times are either in seconds (UNIX epoch |
no outgoing calls
no test coverage detected