(repo: string)
| 14 | const githubShorthandUrlPattern = /^github\.com\/([^/\s]+)\/([^/\s]+?)(?:\.git)?\/?$/i |
| 15 | |
| 16 | function cleanRepositoryName(repo: string) { |
| 17 | return repo.replace(gitSuffixPattern, '').trim() |
| 18 | } |
| 19 | |
| 20 | function buildGitHubRepositoryLink( |
| 21 | owner: string, |
no outgoing calls
no test coverage detected