(raw)
| 964 | // MUST also update _extractTargetVersion (and vice versa) or the |
| 965 | // parity test breaks. |
| 966 | function _isAcceptedRequiredVersionForTesting(raw) { |
| 967 | if (typeof raw !== 'string') return false; |
| 968 | return normalizeRequiredVersion(raw) !== ''; |
| 969 | } |
| 970 | |
| 971 | // Type guard: is `result` a structured failure (vs true / NOOP / BUSY)? |
| 972 | // Call sites use this to decide whether to forward result as opts.failure to |
nothing calls this directly
no test coverage detected