(filePath, atime, mtime)
| 507 | } |
| 508 | |
| 509 | utimesSync(filePath, atime, mtime) { |
| 510 | const providerPath = this.#toProviderPath(filePath); |
| 511 | this[kProvider].utimesSync(providerPath, atime, mtime); |
| 512 | } |
| 513 | |
| 514 | lutimesSync(filePath, atime, mtime) { |
| 515 | const providerPath = this.#toProviderPath(filePath); |
no test coverage detected