UNPKG

lhy-tool

Version:

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

17 lines 313 B
function htmlEscape(htmlStr) { return htmlStr.replace(/<|>|"|&/g, (math) => { switch (math) { case "<": return "&lt" case ">": return "&gt" case "&": return "&amp" case '"': return "&quot" } }) } module.exports = { htmlEscape }