| 20 | } |
| 21 | |
| 22 | interface ParsedExtension { |
| 23 | name: string |
| 24 | url: string |
| 25 | description: string |
| 26 | category: string |
| 27 | repoOwner?: string |
| 28 | repoName?: string |
| 29 | } |
| 30 | |
| 31 | function extractGitHubInfo(url: string): { owner: string; repo: string } | null { |
| 32 | const match = url.match(/github\.com\/([^\/]+)\/([^\/\)]+)/) |
nothing calls this directly
no outgoing calls
no test coverage detected