(origin: string)
| 2244 | ); |
| 2245 | |
| 2246 | const loginHostLabel = (origin: string): string => { |
| 2247 | try { |
| 2248 | const host = new URL(origin).hostname; |
| 2249 | const first = host.split(".")[0]; |
| 2250 | return first && first.length > 0 ? first : host; |
| 2251 | } catch { |
| 2252 | return "server"; |
| 2253 | } |
| 2254 | }; |
| 2255 | |
| 2256 | const sanitizeProfileName = (raw: string): string => { |
| 2257 | const cleaned = raw |
no outgoing calls
no test coverage detected