* @description * Validator that requires the control's value pass an email validation test. * * Tests the value using a [regular * expression](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions) * pattern suitable for common use cases. The pattern is bas
(control: AbstractControl)
| 296 | * |
| 297 | */ |
| 298 | static email(control: AbstractControl): ValidationErrors | null { |
| 299 | return emailValidator(control); |
| 300 | } |
| 301 | |
| 302 | /** |
| 303 | * @description |
no test coverage detected