(host: string)
| 18 | * @param options command options. |
| 19 | */ |
| 20 | export function realtimeOriginOrCustomUrl(host: string): string { |
| 21 | return envOverride("FIREBASE_REALTIME_URL", host); |
| 22 | } |
| 23 | |
| 24 | function addHttpIfRequired(val: string) { |
| 25 | if (val.startsWith("http")) { |
no test coverage detected
searching dependent graphs…