1.0.0 • Published 2 years ago

itheima-tools-lqw v1.0.0

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

安装

npm i itheima-tools-lqw

导入

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

格式化时间

//调用 dateFormat 方法进行时间格式化
const NewDate=itheima.dateFormat(new Date())
//结果  2022-05-22 13:49:30
console.log(NewDate);

转义html中的特殊字符

//待转换的字符串
const htmlStr='<h1 title="abc">这是一个h1标签 <span>123&nbsp;</span> </h1>'
//调用 htmlEscape 方法进行进行转换
const newHtml=itheima.htmlEscape(htmlStr)
//结果  &gt;h1 title=&quot;abc&quot;&lt;这是一个h1标签 &gt;span&lt;123&amp;nbsp;&gt;/span&lt; &gt;/h1&lt;
console.log(newHtml)

还原html中的特殊字符

const htmlStr='<h1 title="abc">这是一个h1标签 <span>123&nbsp;</span> </h1>'
const newHtml=itheima.htmlEscape(htmlStr)
//调用 htmlRestore 方法进行进行还原
const oldHtml=itheima.htmlRestore(newHtml)
//结果  <h1 title="abc">这是一个h1标签 <span>123&nbsp;</span> </h1>
console.log(oldHtml)

开源协议

ISC