(filePath: FilePath, encoding?: Encoding)
| 135 | |
| 136 | // eslint-disable-next-line require-await |
| 137 | async readFile(filePath: FilePath, encoding?: Encoding): Promise<any> { |
| 138 | return this.readFileSync(filePath, encoding); |
| 139 | } |
| 140 | |
| 141 | async writeFile( |
| 142 | filePath: FilePath, |
no test coverage detected
searching dependent graphs…