MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / loginHostLabel

Function loginHostLabel

apps/cli/src/main.ts:2395–2403  ·  view source on GitHub ↗
(origin: string)

Source from the content-addressed store, hash-verified

2393);
2394
2395const loginHostLabel = (origin: string): string => {
2396 try {
2397 const host = new URL(origin).hostname;
2398 const first = host.split(".")[0];
2399 return first && first.length > 0 ? first : host;
2400 } catch {
2401 return "server";
2402 }
2403};
2404
2405const sanitizeProfileName = (raw: string): string => {
2406 const cleaned = raw

Callers 1

chooseLoginProfileNameFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected