(branchName: string)
| 89 | |
| 90 | /** Whether the given branch corresponds to a version branch. */ |
| 91 | export function isVersionBranch(branchName: string): boolean { |
| 92 | return versionBranchNameRegex.test(branchName); |
| 93 | } |
| 94 | |
| 95 | /** |
| 96 | * Gets the version branches for the specified major versions in descending |
no outgoing calls
no test coverage detected