(host: string, port: number)
| 83 | } |
| 84 | |
| 85 | function buildHttpBaseUrl(host: string, port: number): string { |
| 86 | return `http://${formatHostForUrl(host)}:${port}`; |
| 87 | } |
| 88 | |
| 89 | function resolveAllowHttpOriginEnvFlag(): boolean { |
| 90 | const raw = process.env.MUX_SERVER_ALLOW_HTTP_ORIGIN; |
no test coverage detected