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

Method transform

packages/common/src/pipes/case_conversion_pipes.ts:118–122  ·  view source on GitHub ↗
(value: string | null | undefined)

Source from the content-addressed store, hash-verified

116 transform(value: null | undefined): null;
117 transform(value: string | null | undefined): string | null;
118 transform(value: string | null | undefined): string | null {
119 if (value == null) return null;
120 assertPipeArgument(UpperCasePipe, value);
121 return value.toUpperCase();
122 }
123}
124
125function assertPipeArgument(pipe: Type<any>, value: Object): void {

Callers

nothing calls this directly

Calls 1

assertPipeArgumentFunction · 0.85

Tested by

no test coverage detected