(url: string)
| 464 | /** The hostname alone — a malformed URL yields "invalid" rather than leaking |
| 465 | * whatever string failed to parse. */ |
| 466 | const hostnameForTelemetry = (url: string): string => URL.parse(url)?.hostname ?? "invalid"; |
| 467 | |
| 468 | // --------------------------------------------------------------------------- |
| 469 | // oauth4webapi adapter helpers |
no outgoing calls
no test coverage detected