(filePath, mode)
| 1223 | }, |
| 1224 | |
| 1225 | async chmod(filePath, mode) { |
| 1226 | const providerPath = toProviderPath(filePath); |
| 1227 | provider.chmodSync(providerPath, mode); |
| 1228 | }, |
| 1229 | |
| 1230 | async chown(filePath, uid, gid) { |
| 1231 | const providerPath = toProviderPath(filePath); |
no test coverage detected