UNPKG

parker-tools

Version:

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

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