(path: string)
| 290 | |
| 291 | // Readonly. |
| 292 | read(path: string): Buffer | null { |
| 293 | const entry = this.get(path); |
| 294 | |
| 295 | return entry ? entry.content : null; |
| 296 | } |
| 297 | |
| 298 | readText(path: string): string { |
| 299 | const data = this.read(path); |
no test coverage detected