MCPcopy Create free account
hub / github.com/angular/angular / isContentQuery

Function isContentQuery

packages/core/src/render3/jit/directive.ts:485–488  ·  view source on GitHub ↗
(value: any)

Source from the content-addressed store, hash-verified

483}
484
485function isContentQuery(value: any): value is Query {
486 const name = value.ngMetadataName;
487 return name === 'ContentChild' || name === 'ContentChildren';
488}
489
490function isViewQuery(value: any): value is Query {
491 const name = value.ngMetadataName;

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected