()
| 11 | const repositoryWithHostCache = new Map<string, ParsedRepository | null>() |
| 12 | |
| 13 | export function clearRepositoryCaches(): void { |
| 14 | repositoryWithHostCache.clear() |
| 15 | } |
| 16 | |
| 17 | export async function detectCurrentRepository(): Promise<string | null> { |
| 18 | const result = await detectCurrentRepositoryWithHost() |
no test coverage detected