(
private env: Env,
private configuration: RegistryConfiguration,
)
| 235 | private url: URL; |
| 236 | |
| 237 | constructor( |
| 238 | private env: Env, |
| 239 | private configuration: RegistryConfiguration, |
| 240 | ) { |
| 241 | this.url = new URL(configuration.registry); |
| 242 | } |
| 243 | |
| 244 | authBase64(): string { |
| 245 | const configuration = this.configuration; |
nothing calls this directly
no outgoing calls
no test coverage detected