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

Method getRawValue

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

* The aggregate value of the `FormGroup`, including any disabled controls. * * Retrieves all values regardless of disabled status.

()

Source from the content-addressed store, hash-verified

581 * Retrieves all values regardless of disabled status.
582 */
583 override getRawValue(): ɵTypedOrUntyped<TControl, ɵFormGroupRawValue<TControl>, any> {
584 return this._reduceChildren({}, (acc, control, name) => {
585 (acc as any)[name] = (control as any).getRawValue();
586 return acc;
587 }) as any;
588 }
589
590 /** @internal */
591 override _syncPendingControls(): boolean {

Callers

nothing calls this directly

Calls 2

_reduceChildrenMethod · 0.95
getRawValueMethod · 0.65

Tested by

no test coverage detected