MCPcopy Index your code
hub / github.com/angular/angular-cli / list

Method list

packages/angular_devkit/core/node/host.ts:91–95  ·  view source on GitHub ↗
(path: Path)

Source from the content-addressed store, hash-verified

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)));

Callers

nothing calls this directly

Calls 2

getSystemPathFunction · 0.90
fragmentFunction · 0.90

Tested by

no test coverage detected