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