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

Method transform

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

Source from the content-addressed store, hash-verified

38 transform(value: null | undefined): null;
39 transform(value: string | null | undefined): string | null;
40 transform(value: string | null | undefined): string | null {
41 if (value == null) return null;
42 assertPipeArgument(LowerCasePipe, value);
43 return value.toLowerCase();
44 }
45}
46
47//

Callers

nothing calls this directly

Calls 1

assertPipeArgumentFunction · 0.85

Tested by

no test coverage detected