UNPKG

xiaobai1-tools

Version:

格式化时间

18 lines (17 loc) 318 B
function htmlEscape(htmlstr) { return htmlstr.replace(/<|>|"|&/g, (match) => { switch (match) { case '>': return '&lt' case '<': return '&gt' case '"': return '&quot' case '&': return '&amp' } }) } module.exports = { htmlEscape, }