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

Method _find

packages/forms/src/model/form_group.ts:667–671  ·  view source on GitHub ↗

@internal

(name: string | number)

Source from the content-addressed store, hash-verified

665
666 /** @internal */
667 override _find(name: string | number): AbstractControl | null {
668 return hasOwnControl(this.controls, name as string)
669 ? (this.controls as any)[name as keyof TControl]
670 : null;
671 }
672}
673
674/**

Callers 6

registerControlMethod · 0.95
removeControlMethod · 0.95
setControlMethod · 0.95
containsMethod · 0.95
patchValueMethod · 0.95
getFunction · 0.45

Calls 1

hasOwnControlFunction · 0.90

Tested by

no test coverage detected