(control: AbstractControl)
| 509 | * See `Validators.requiredTrue` for additional information. |
| 510 | */ |
| 511 | export function requiredTrueValidator(control: AbstractControl): ValidationErrors | null { |
| 512 | return control.value === true ? null : {'required': true}; |
| 513 | } |
| 514 | |
| 515 | /** |
| 516 | * Validator that requires the control's value pass an email validation test. |
no outgoing calls
no test coverage detected
searching dependent graphs…