UNPKG

xiaoruan-tools

Version:

格式化时间,html字符串转义与还原

35 lines (34 loc) 699 B
// 转义html字符串 const htmlescape = (htmlstr) => { return htmlstr.replace(/<|>|"|&/g, function (match) { switch (match) { case "<": return "&lt;"; case ">": return "&gt;"; case '"': return "&quot;"; case "&": return "&amp;"; } }); }; // 还原字符串 const htmlrestore = (str) => { return str.replace(/&lt;|&gt;|&quot;|&amp;/g, (match) => { switch (match) { case "&lt;": return "<"; case "&gt;": return ">"; case "&quot;": return '"'; case "&amp;": return "&"; } }); }; module.exports = { htmlescape, htmlrestore, };