( control: FormGroup | FormArray, dir: AbstractFormGroupDirective | FormArrayName, )
| 329 | * @returns true if a control was updated as a result of this action. |
| 330 | */ |
| 331 | export function cleanUpFormContainer( |
| 332 | control: FormGroup | FormArray, |
| 333 | dir: AbstractFormGroupDirective | FormArrayName, |
| 334 | ): boolean { |
| 335 | return cleanUpValidators(control, dir); |
| 336 | } |
| 337 | |
| 338 | function _noControlError(dir: NgControl) { |
| 339 | return _throwError(dir, 'There is no FormControl instance attached to form control element with'); |
no test coverage detected
searching dependent graphs…