(path: string)
| 190 | this.rootDir = rootDir; |
| 191 | } |
| 192 | async read(path: string): Promise<string> { |
| 193 | return await readFile(resolve(this.rootDir, path), { encoding: 'utf-8' }); |
| 194 | } |
| 195 | async exists(path: string): Promise<boolean> { |
| 196 | return await pathExists(resolve(this.rootDir, path)); |
| 197 | } |
no test coverage detected