(resultArr: number[])
| 6315 | } |
| 6316 | |
| 6317 | function observableValidator(resultArr: number[]): AsyncValidatorFn { |
| 6318 | return (c: AbstractControl) => { |
| 6319 | return timer(100).pipe(tap((resp: any) => resultArr.push(resp))); |
| 6320 | }; |
| 6321 | } |
| 6322 | |
| 6323 | function loginIsEmptyGroupValidator(c: FormGroup) { |
| 6324 | return c.controls['login'].value == '' ? {'loginIsEmpty': true} : null; |
no test coverage detected