( validators: Array<AsyncValidator | AsyncValidatorFn>, )
| 704 | * them into a single validator function. |
| 705 | */ |
| 706 | export function composeAsyncValidators( |
| 707 | validators: Array<AsyncValidator | AsyncValidatorFn>, |
| 708 | ): AsyncValidatorFn | null { |
| 709 | return validators != null |
| 710 | ? composeAsync(normalizeValidators<AsyncValidatorFn>(validators)) |
| 711 | : null; |
| 712 | } |
| 713 | |
| 714 | /** |
| 715 | * Merges raw control validators with a given directive validator and returns the combined list of |
no test coverage detected
searching dependent graphs…