"use strict"; (function (global) { function htmlEscape(value = "") { return String(value ?? "").replace(/[&<>"']/g, ch => ({ "&": "&", "<": "<", ">": ">", "\"": """, "'": "'" }[ch] || ch)); } global.TarinaiUIHelpers = { htmlEscape }; })(typeof window !== "undefined" ? window : globalThis);