(path: Path)
| 89 | } |
| 90 | |
| 91 | list(path: Path): Observable<PathFragment[]> { |
| 92 | return observableFrom(fsPromises.readdir(getSystemPath(path))).pipe( |
| 93 | map((names) => names.map((name) => fragment(name))), |
| 94 | ); |
| 95 | } |
| 96 | |
| 97 | exists(path: Path): Observable<boolean> { |
| 98 | return observableFrom(exists(getSystemPath(path))); |
nothing calls this directly
no test coverage detected