UNPKG

cl_tools2.0

Version:

提供格式化时间,HTMLscape相关功能

37 lines (34 loc) 669 B
// 转译html function htmlEscape(str) { return str.replace(/<|>|&|"/g, (match) => { switch (match) { case "<": return "&lt;"; case ">": return "&gt;"; case '"': return "&quot;"; case "&": return "&amp;"; } }); } // 还原html function htmlUnEscape(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, htmlUnEscape, };