(validators: Array<Validator | ValidatorFn>)
| 678 | * validator function. |
| 679 | */ |
| 680 | export function composeValidators(validators: Array<Validator | ValidatorFn>): ValidatorFn | null { |
| 681 | return validators != null ? compose(normalizeValidators<ValidatorFn>(validators)) : null; |
| 682 | } |
| 683 | |
| 684 | /** |
| 685 | * Merges asynchronous validators into a single validator function. |
no test coverage detected
searching dependent graphs…