1.0.0 • Published 5 years ago

itheima-tools-zhang v1.0.0

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

安装方式

npm install itheima-tools-zhang

导入方式

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

格式化时间

const date = tools.dateFormat(new Date())
console.log(date); // 2020-10-16 14:59:50

转义HTML中的特殊字符

const str = '<h1 title="1230">标题&nbsp;</h1>'
const str2 = tools.htmlEscape(str);
console.log(str2); // &lt;h1 title=&qout;1230&qout;&gt;标题&map;nbsp;&lt;/h1&gt;

还原HTML中的特殊字符

const str3 = tools.htmlUnEscape(str2);
console.log(str3); // <h1 title="1230">标题&nbsp;</h1>

开源协议

ISC

1.0.0

5 years ago