MCPcopy Index your code
hub / github.com/angular/angular / isPipe

Function isPipe

packages/core/src/render3/jit/util.ts:25–27  ·  view source on GitHub ↗
(value: Type<T>)

Source from the content-addressed store, hash-verified

23}
24
25export function isPipe<T>(value: Type<T>): value is PipeType<T> {
26 return !!getPipeDef(value);
27}
28
29export function isDirective<T>(value: Type<T>): value is DirectiveType<T> {
30 return !!getDirectiveDef(value);

Callers 2

computeNgModuleScopeMethod · 0.90

Calls 1

getPipeDefFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…