(url: string)
| 21 | ]; |
| 22 | |
| 23 | function stripScheme(url: string): string { |
| 24 | return url.replace(/^https?:\/\//, ''); |
| 25 | } |
| 26 | |
| 27 | export async function ensureAuth(config: Config): Promise<void> { |
| 28 | if (config.apiKey || config.fileApiKey) return; |
no outgoing calls
no test coverage detected