UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

15 lines 260 B
export function escapeHtml(text) { if (!text) { return text; } var map = { '&': '&amp;', '<': '&lt;', '>': '&gt;', '"': '&quot;', "'": '&#039;' }; return text.replace(/[&<>"']/g, function (item) { return map[item]; }); }