(origin: string)
| 2300 | ); |
| 2301 | |
| 2302 | const loginHostLabel = (origin: string): string => { |
| 2303 | try { |
| 2304 | const host = new URL(origin).hostname; |
| 2305 | const first = host.split(".")[0]; |
| 2306 | return first && first.length > 0 ? first : host; |
| 2307 | } catch { |
| 2308 | return "server"; |
| 2309 | } |
| 2310 | }; |
| 2311 | |
| 2312 | const sanitizeProfileName = (raw: string): string => { |
| 2313 | const cleaned = raw |
no outgoing calls
no test coverage detected