1.0.0 • Published 2 years ago

zsm-itheima-tools v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

安装

npm install zsm-itheima-tools

导入

const itheima = require("zsm-itheima-tools")

格式化时间

// 调用 dateFormat() 对时间进行格式化
const dateStr = itheima.dateFormat(new Date())
// 2022-06-06 18:30:30

转义html特殊字符

// 调用 htmlEscape() 对html字符进行转义输出
const str = itheima.htmlEscape('<h1>"&"</h1>')
console.log(str) // &lt;h1&gt;&quot;&amp;&quot;&lt;/h1&gt;

还原html特殊字符

// 调用 htmlUnEscape() 对html字符进行转义输出
const str = itheima.htmlUnEscape('&lt;h1&gt;&quot;&amp;&quot;&lt;/h1&gt;')
console.log(str) // <h1>"&"</h1>

开源协议

ISC