(answer: string)
| 463 | |
| 464 | /** Split a space-separated repo list into a trimmed, non-empty string array. */ |
| 465 | export function parseRepoList(answer: string): string[] { |
| 466 | return answer.split(/\s+/).map((s) => s.trim()).filter((s) => s.length > 0); |
| 467 | } |
no outgoing calls
no test coverage detected