(fileName: string)
| 25 | } |
| 26 | |
| 27 | fileExists(fileName: string): boolean { |
| 28 | return typeof this.getEntry(fileName) === 'string'; |
| 29 | } |
| 30 | |
| 31 | directoryExists(path: string): boolean { |
| 32 | return path === this.currentDirectory || typeof this.getEntry(path) === 'object'; |
no test coverage detected