(left: string, right: string)
| 280 | } |
| 281 | |
| 282 | function resolveMergeBaseBetween(left: string, right: string): string { |
| 283 | return execFileSync("git", ["merge-base", left, right], { |
| 284 | encoding: "utf8", |
| 285 | stdio: ["ignore", "pipe", "ignore"], |
| 286 | }).trim(); |
| 287 | } |
| 288 | |
| 289 | function parseRefRange(ref: string): RefRange | null { |
| 290 | const threeDotIndex = ref.indexOf(RANGE_SEPARATOR.THREE_DOT); |
no outgoing calls
no test coverage detected