( validationResults: InternalValidationResult[] )
| 9 | import { arrayContainsEntries } from './helpers'; |
| 10 | |
| 11 | const didAllValidationsSucceeded = ( |
| 12 | validationResults: InternalValidationResult[] |
| 13 | ): boolean => validationResults.every(fvr => fvr.succeeded); |
| 14 | |
| 15 | const extractErrors = ( |
| 16 | validationResults: InternalValidationResult[] |
no outgoing calls
no test coverage detected
searching dependent graphs…