(expectedValue: string, timeout: number = 0)
| 6336 | } |
| 6337 | |
| 6338 | function uniqLoginAsyncValidator(expectedValue: string, timeout: number = 0) { |
| 6339 | return asyncValidator((c) => c.value === expectedValue, timeout, {'uniqLogin': true}); |
| 6340 | } |
| 6341 | |
| 6342 | function observableValidator(resultArr: number[]): AsyncValidatorFn { |
| 6343 | return (c: AbstractControl) => { |
no test coverage detected
searching dependent graphs…