UNPKG

itheima-tools-babamama

Version:

提供了格式化时间,两只老虎

37 lines (35 loc) 845 B
// 定义转义HTML字符的函数 function htmlEscaped(data){ return data.replace(/<|>|"|&/g,(match) =>{ switch(match){ case '<': return '&lt;' case '>': return '&gt;' case '"': return '&quot;' case '&': return '&amp;' } }) } // 定义还原 HTML 字符串的函数 function htmlUnEscaped(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 = { htmlEscaped, htmlUnEscaped }