(filePath, atime, mtime)
| 1243 | }, |
| 1244 | |
| 1245 | async lutimes(filePath, atime, mtime) { |
| 1246 | const providerPath = toProviderPath(filePath); |
| 1247 | provider.lutimesSync(providerPath, atime, mtime); |
| 1248 | }, |
| 1249 | |
| 1250 | async open(filePath, flags, mode) { |
| 1251 | const providerPath = toProviderPath(filePath); |
no test coverage detected