UNPKG

itheima-utils-timecarol

Version:

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

30 lines (29 loc) 677 B
## 安装 ``` npm install itheima-utils-timecarol -S ``` ## 导入 ```js const itheima = require('itheima-utils-timecarol') ``` ## 格式化时间 ```js //调用 dateFormat 对时间进行格式化 console.log(itheima.dateFormat()) //结果 2022-08-17 22:56:31 console.log(itheima.dateFormat(new Date())) ``` ## 转义HTML中的特殊字符 ```js //转换 html 字符串 console.log(itheima.htmlEncode('<h1>itheima</h1>')) //转换的结果 &lt;h1&gt;itheima&lt;/h1&gt; ``` ## 还原HML中的特殊字符 ```js //还原 html字符串 console.log(itheima.htmlDecode('&lt;h1&gt;itheima&lt;/h1&gt;')) //结果 <h1>itheima</h1> ``` ## 开源协议 ISC