(filePath, uid, gid)
| 1228 | }, |
| 1229 | |
| 1230 | async chown(filePath, uid, gid) { |
| 1231 | const providerPath = toProviderPath(filePath); |
| 1232 | provider.chownSync(providerPath, uid, gid); |
| 1233 | }, |
| 1234 | |
| 1235 | async lchown(filePath, uid, gid) { |
| 1236 | const providerPath = toProviderPath(filePath); |
no test coverage detected