1.0.0 • Published 9 months ago

itheima-tools-clm v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
9 months ago

安装

npm install itheima-tools

导入

const itheima = require('itheima-tools')

格式化时间

// 调用 dateFormat 对时间进行格式化
itheima.dateFormat(new Date())
// 结果 2024-10-20 10:59:26

转义 HTML 中的特殊字符

// 调用 htmlEscape 进行转换
const htmlStr = '<h1 style="color:red">标签</h1>'
itheima.htmlEscape(htmlStr)
// 结果 &lt;h1 style=&quot;color:red&quot;&gt;标签&lt;/h1&gt;

还原 HTML 中的特殊字符

// 调用 htmlUnEscape 进行还原
const htmlStr = '&lt;h1 style=&quot;color:red&quot;&gt;标签&lt;/h1&gt;'
itheima.htmlEscape(htmlStr)
// 结果 <h1 style="color:red">标签</h1>

开源协议

ISC

1.0.0

9 months ago