1.0.0 • Published 1 year ago

liuyongxiang-tools v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

安装

npm install itheima-tools

导入

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

格式化时间

// 调用dateFormat对时间进行格式化

console.log(dateFormat.dateFormat(new Date()));

// 结果 2023-01-23 23:15:01

转译 HTML 中的特殊字符

// 调用htmlEscape进行转换

console.log(dateFormat.htmlEscape("<h1>aaa</h1>"))

// 转换结果 &lt;h1&gt;aaa&lt;/h1&gt;

还原 HTML 中的特殊字符

// 调用htmlUnEscape进行转换

console.log(dateFormat.htmlUnEscape("&lt;h1&gt;"))

// 转换结果 <h1>

开源协议

ISC