UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

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