(value: string)
| 509 | } |
| 510 | |
| 511 | function commitShasArg(value: string): string[] { |
| 512 | return value |
| 513 | .split(/[\s,]+/) |
| 514 | .map((sha) => sha.trim()) |
| 515 | .filter(Boolean) |
| 516 | .map((sha) => assertSha(sha)); |
| 517 | } |
| 518 | |
| 519 | function classifyCommand(args: Args): void { |
| 520 | const targetRepo = argString(args, "target_repo", DEFAULT_TARGET_REPO); |
no test coverage detected