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

Method get

packages/angular_devkit/schematics/src/tree/scoped.ts:145–149  ·  view source on GitHub ↗
(path: string)

Source from the content-addressed store, hash-verified

143 return this._base.exists(this._fullPath(path));
144 }
145 get(path: string): FileEntry | null {
146 const entry = this._base.get(this._fullPath(path));
147
148 return entry && new ScopedFileEntry(entry, this._root.scope);
149 }
150 getDir(path: string): DirEntry {
151 const entry = this._base.getDir(this._fullPath(path));
152

Callers

nothing calls this directly

Calls 2

_fullPathMethod · 0.95
getMethod · 0.65

Tested by

no test coverage detected