(path: 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 | } |
| 198 | } |
| 199 | |
| 200 | export { MappedFS }; |
no outgoing calls
no test coverage detected