(text)
| 11 | let currentThemeId = null; |
| 12 | |
| 13 | export function sanitize(text) { |
| 14 | if (!text) return ""; |
| 15 | return DOMPurify.sanitize(text, { ALLOWED_TAGS: [] }); |
| 16 | } |
| 17 | |
| 18 | function escapeHtml(text) { |
| 19 | return text |
no outgoing calls
no test coverage detected