(version)
| 659 | let _inFlight = false; |
| 660 | |
| 661 | function parseConcreteSemver(version) { |
| 662 | var match = CONCRETE_SEMVER_RE.exec(normalizeConcreteSemver(version)); |
| 663 | if (!match) return null; |
| 664 | return { |
| 665 | major: match[1], |
| 666 | minor: match[2], |
| 667 | patch: match[3], |
| 668 | prerelease: match[4] ? match[4].split('.') : [], |
| 669 | }; |
| 670 | } |
| 671 | |
| 672 | function normalizeConcreteSemver(version) { |
| 673 | var normalized = String(version || '').replace(/^v(?=\d)/, ''); |
no test coverage detected