UNPKG

mdf-tools

Version:

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

34 lines (33 loc) 622 B
// 转义 function htmlEscape(htmlstr) { return htmlstr.replace(/<|>|"|&/g,ma=>{ switch(ma){ case "<": return '&lt;' case '>': return '&gt;' case '"': return '&quot;' case '&': return '&amp;' } }) } function htmlUnEscape(str){ return str.replace(/&lt;|&gt;|&quot;|&amp;/g,(ma)=>{ switch(ma){ case '&lt;': return '<' case '&gt;': return '>' case '&quot;': return '"' case '&amp;': return '&' } }) } module.exports={ htmlEscape, htmlUnEscape }