itheima-tools-huang
v1.0.0
Published
提供了格式化时间、HTMLEscape相关的功能
Downloads
1
Readme
安装
npm install itheima-tools-huang
导入
const itheima = require('itheima-tools');
格式化时间
<!-- 调用 dateFormate 进行时间格式化 -->
const dtStr = itheima.dateFormate(new Date());
<!-- 结果 2021-11-23 17:47:35 -->
console.log(dtStr);
转义HTML特殊字符
<!-- 先定义特殊字符 -->
const htmlstr = '<h1 title="abc">这是h1标签<span>123 </span></h1>';
<!-- 调用 htmlEscape 进行特殊字符转换 -->
const str = itheima.htmlEscape(htmlstr);
<!-- 结果 <h1 title="abc">这是h1标签<span>123&nbsp;</span></h1> -->
console.log(str);
还原 HTML 特殊字符用法
<!-- 调用 htmlUnEscape 进行待还原的字符串 -->
const html = itheima.htmlUnEscape(str);
<!-- 结果 <h1 title="abc">这是h1标签<span>123 </span></h1> -->
console.log(html);
开源协议
ISC