(input: Reference)
| 224 | } |
| 225 | |
| 226 | export function repositoryCacheIdentity(input: Reference) { |
| 227 | return `${input.host}/${input.path}` |
| 228 | } |
| 229 | |
| 230 | export function sameRepositoryReference(left: Reference, right: Reference) { |
| 231 | return repositoryCacheIdentity(left) === repositoryCacheIdentity(right) |
no outgoing calls
no test coverage detected