(texts: string[])
| 22 | * Sanitize an array of strings |
| 23 | */ |
| 24 | export function sanitizeTextArray(texts: string[]): string[] { |
| 25 | return texts.map((text) => sanitizeTextForUTF8(text)) |
| 26 | } |
| 27 | |
| 28 | /** |
| 29 | * Check if a string contains problematic characters for UTF-8 storage |
nothing calls this directly
no test coverage detected