1.0.0 • Published 2 years ago

itheima-tools-un v1.0.0

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

##安装

 npm i itheima-tools

##导入

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

##格式化时间

const dateStr=itheima.dateFormat(new Date());
console.log(dateStr);
//结果 2022-03-22 16:23:36

##转义HTML中的特殊字符

//定义html字符串
const htmlStr='<h1 title="123">123&nbsp;</h1>'
//调用转移函数
const str = itheimai.htmlEscape(htmlStr);
console.log(str);
//结果
&lt;h1 title=&quot;123&quot;&gt;123&amp;nbsp;&lt;/h1&gt;

##还原HTML代码

//待还原的html字符串
const html=itheima.htmlUnEscape(str);
console.log(html);
//结果 <h1 title="123">123&nbsp;</h1>

##开源协议 ISC