(path: string)
| 29 | } |
| 30 | |
| 31 | directoryExists(path: string): boolean { |
| 32 | return path === this.currentDirectory || typeof this.getEntry(path) === 'object'; |
| 33 | } |
| 34 | |
| 35 | readFile(fileName: string): string { |
| 36 | const data = this.getEntry(fileName); |
no test coverage detected