(value?: string)
| 16 | } |
| 17 | |
| 18 | function normalizePropertyValue(value?: string): string { |
| 19 | return value != null ? value.trim() : ""; |
| 20 | } |
| 21 | |
| 22 | function normalizePropertyValues(value?: string): string[] { |
| 23 | const normalized = normalizePropertyValue(value); |
no outgoing calls
no test coverage detected