MCPcopy Index your code
hub / github.com/getsentry/XcodeBuildMCP / parseEnabledWorkflows

Function parseEnabledWorkflows

src/utils/config-store.ts:131–138  ·  view source on GitHub ↗
(value: string | undefined)

Source from the content-addressed store, hash-verified

129}
130
131function parseEnabledWorkflows(value: string | undefined): string[] | undefined {
132 if (value == null) return undefined;
133 const normalized = value
134 .split(',')
135 .map((name) => name.trim().toLowerCase())
136 .filter(Boolean);
137 return normalized;
138}
139
140function parseUiDebuggerGuardMode(value: string | undefined): UiDebuggerGuardMode | undefined {
141 if (!value) return undefined;

Callers 1

readEnvConfigFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected