(path: Path)
| 99 | } |
| 100 | |
| 101 | isDirectory(path: Path): Observable<boolean> { |
| 102 | return this.stat(path).pipe(map((stat) => stat.isDirectory())); |
| 103 | } |
| 104 | |
| 105 | isFile(path: Path): Observable<boolean> { |
| 106 | return this.stat(path).pipe(map((stat) => stat.isFile())); |
nothing calls this directly
no test coverage detected