``` npm install itheima-tools ```
npm install itheima-tools-wlk
npm install itheima-tools
`
导入
`js
const itheima = require('itheima-tools-wlk');
`
格式化时间
`js
const dtStr = itheima.dateFormat(new Date());
console.log(dtStr);
// 2022-02-10 21:01:55
`
转义 HTML 中的特殊字符
`js
const htmlStr =
console.log(itheima.htmlEscape(htmlStr));
// <h1 title="abc">这是h1标签<span>123 </span></h1>
`
还原 HTML 中的特殊字符
`js
console.log(itheima.htmlUnEscape(itheima.htmlEscape(htmlStr)));
// 这是h1标签123
``