(path: string)
| 111 | } |
| 112 | |
| 113 | exists(path: string): boolean { |
| 114 | const normalizedPath = this.normalizePath(path); |
| 115 | return this.files.has(normalizedPath) || this.folders.has(normalizedPath); |
| 116 | } |
| 117 | |
| 118 | read(path: string): string { |
| 119 | const normalizedPath = this.normalizePath(path); |
no test coverage detected