1.0.0 • Published 2 years ago

shkmzzh v1.0.0

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

##安装

npm install itheima-zzh

##导入

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

##格式化时间

// 调用 dateFormat 对时间进行格式化
const dtSrc =itheima.dateFormat(new Date())
console.log(dtSrc)
结果 2022-03-23 18:21:50

##转义 HTML 的特殊字符

//带转化的 HTML 字符串
const htmlstr ='<h1 class="">123&nbsp;</h1>'
// 调用 htmlEscape 方法进行转换
const str =itheima.htmlEscape(htmlstr);
//转换结果&lt;h1 class=&quot;&quot;&gt;123&amp;nbsp;&lt;/h1&gt;
console.log(str);

##还原 HTML 中的特殊字符

// 调用 htmlUnEscape 方法进行还原
const str2 =itheima.htmlUnEscape(str);
// 转换结果 <h1 class="">;123&;nbsp;</h1>;
console.log(str2);

##开源协议 ISC