Function
parseEnabledWorkflows
(value: string | undefined)
Source from the content-addressed store, hash-verified
| 129 | } |
| 130 | |
| 131 | function 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 | |
| 140 | function parseUiDebuggerGuardMode(value: string | undefined): UiDebuggerGuardMode | undefined { |
| 141 | if (!value) return undefined; |
Tested by
no test coverage detected