(value: string | undefined)
| 58 | } |
| 59 | |
| 60 | function parseCsv(value: string | undefined): string[] { |
| 61 | return normalizeList(value?.split(',')) |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * Fallback source for self-hosted/OSS/local deployments that have no AppConfig. |
no test coverage detected