UNPKG

zyz-tools-b

Version:

提供了格式化时间,HTMLEscape相关的功能

37 lines (34 loc) 786 B
//定义转义 function htmlEscape(a) { return a.replace(/<|>|"|&/g, match => { switch (match) { case '<': return "&gt;" case '>': return "&gt;" case '"': return "&quot;" case '&': return "&amp;" } }) } //定义还原 function htmlUnEscape(b) { return b.replace(/&gt;&gt;&quot;&amp;/g, (match) => { switch (match) { case '&gt;': return "<" case '>': return "&gt;" case '&quot;': return '"' case '&amp;': return "&" } }) } module.exports = { htmlEscape, htmlUnEscape }