(filePath, atime, mtime)
| 1238 | }, |
| 1239 | |
| 1240 | async utimes(filePath, atime, mtime) { |
| 1241 | const providerPath = toProviderPath(filePath); |
| 1242 | provider.utimesSync(providerPath, atime, mtime); |
| 1243 | }, |
| 1244 | |
| 1245 | async lutimes(filePath, atime, mtime) { |
| 1246 | const providerPath = toProviderPath(filePath); |
no test coverage detected