(input: string)
| 81 | } |
| 82 | |
| 83 | export function normalizeGitHubRepositoryUrl(input: string) { |
| 84 | const link = parseGitHubRepositoryUrl(input) |
| 85 | return link?.canonicalUrl ?? null |
| 86 | } |
| 87 | |
| 88 | export function isSameGitHubRepository( |
| 89 | left: string | null | undefined, |
no test coverage detected