(fsPath, options)
| 427 | }, |
| 428 | |
| 429 | async readFile(fsPath, options) { |
| 430 | return readFilePromise(fsPath, { encoding: options.encoding }) |
| 431 | }, |
| 432 | |
| 433 | async rename(oldPath, newPath) { |
| 434 | return renamePromise(oldPath, newPath) |
no outgoing calls
no test coverage detected