(path: string)
| 340 | return baseHost.stat(path); |
| 341 | }, |
| 342 | existsSync(path: string) { |
| 343 | checkPath(path); |
| 344 | |
| 345 | return baseHost.existsSync(path); |
| 346 | }, |
| 347 | readFile(path: string, encoding: BufferEncoding) { |
| 348 | checkPath(path); |
| 349 |
no test coverage detected