1.0.0 • Published 1 year ago

itheima-tools-una v1.0.0

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

安装

npm install itheima-tools-una

导入

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

格式化时间

//调用dateFormat()对时间格式化
const dt = itheima.dateFormat(new Date());
//输出  2022-12-23 12:03:26
console.log(dt);

转义HTML中的特殊字符

//输出  <h1>Hello</h1>
console.log(itheima.htmlEscape('<h1>Hello</h1>'));

还原HTML中的特殊字符

//输出  <h1>UnEscape</h1>
console.log(itheima.htmlUnEscape('&lt;h1&gt;UnEscape&lt;/h1&gt;'));

开源协议

ISC