(value?: string)
| 20 | } |
| 21 | |
| 22 | function normalizePropertyValues(value?: string): string[] { |
| 23 | const normalized = normalizePropertyValue(value); |
| 24 | return normalized.length > 0 |
| 25 | ? normalized |
| 26 | .split(",") |
| 27 | .map((item) => item.trim()) |
| 28 | .filter(Boolean) |
| 29 | : []; |
| 30 | } |
| 31 | |
| 32 | export function normalizeProjectPropertyKey(key?: string): string { |
| 33 | return key ? key.trim() : ""; |
no test coverage detected