UNPKG

ag-charts-community

Version:

Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue

10 lines 253 B
var element = null; export function sanitizeHtml(text) { element = element || document.createElement('div'); if (!text) { return ''; } element.innerText = text; return element.innerHTML; } //# sourceMappingURL=sanitize.js.map