* Reads a trimmed string config value, returning '' when absent.
(value: unknown)
| 151 | * Reads a trimmed string config value, returning '' when absent. |
| 152 | */ |
| 153 | function readString(value: unknown): string { |
| 154 | return typeof value === 'string' ? value.trim() : '' |
| 155 | } |
| 156 | |
| 157 | /** |
| 158 | * Escapes a value for safe interpolation into a single-quoted WIQL string literal. |
no outgoing calls
no test coverage detected