1.0.0 • Published 2 years ago

itheima-utils-timecarol v1.0.0

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

安装

npm install itheima-utils-timecarol -S

导入

const itheima = require('itheima-utils-timecarol')

格式化时间

//调用 dateFormat 对时间进行格式化
console.log(itheima.dateFormat())
//结果 2022-08-17 22:56:31
console.log(itheima.dateFormat(new Date()))

转义HTML中的特殊字符

//转换 html 字符串
console.log(itheima.htmlEncode('<h1>itheima</h1>'))
//转换的结果 &lt;h1&gt;itheima&lt;/h1&gt;

还原HML中的特殊字符

//还原 html字符串
console.log(itheima.htmlDecode('&lt;h1&gt;itheima&lt;/h1&gt;'))
//结果 <h1>itheima</h1>

开源协议

ISC