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

Function splitLower

apps/host-cloudflare/src/config.ts:89–93  ·  view source on GitHub ↗
(value: string | undefined)

Source from the content-addressed store, hash-verified

87>;
88
89const splitLower = (value: string | undefined): readonly string[] =>
90 (value ?? "")
91 .split(",")
92 .map((part) => part.trim().toLowerCase())
93 .filter((part) => part.length > 0);
94
95const normalizeAccessTeamDomain = (value: string | undefined): string =>
96 (value ?? "")

Callers 1

loadConfigFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected