(validator: V | Validator | AsyncValidator)
| 639 | } |
| 640 | |
| 641 | function isValidatorFn<V>(validator: V | Validator | AsyncValidator): validator is V { |
| 642 | return !(validator as Validator).validate; |
| 643 | } |
| 644 | |
| 645 | /** |
| 646 | * Given the list of validators that may contain both functions as well as classes, return the list |
no outgoing calls
no test coverage detected
searching dependent graphs…