1.0.0 • Published 2 years ago

itheima-xiaosen v1.0.0

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

安装

    npm install itheima-tools

导入

cconst itheima=require("itheima-xiaosen")

格式化时间

// 调用 itheima.deteFormat 对事件进行格式化
const dt= itheima.deteFormat(new Date())
console.log(dt)
// 输出结果 2022-4-16 19:08:52

转义HTML的特殊字符

// 待转换的HTML字符串
const htmlStr1 = "<h1 title='abc'><span>这是h1标签123&nbsp;</span></h1>"
// 调用htmlEscoape 方法进行转换
const str=itheima.htmlEscope(htmlStr1)
// 转换的结果
`&lth1 title='abc'&gt&ltspan&gt这是h1标签123&amp;;nbsp;&lt/span&gt&lt/h1&gt`
//           < 》》 &lt        > 》》 &gt        " 》》 &quot          & 》》 &amp

还原HTML中的特殊字符

//待转换的HTML字符串
const htmlStr2="&lth1 title='abc'&gt&ltspan&gt这是h1标签123&nbsp;&lt/span&gt&lt/h1&gt"
// 调用UnEscope方法进行转换
const str=itheima.UnhtmlEscope(htmlStr2)
// 转换的结果
<h1 title='abc'><span>这是h1标签123&nbsp;</span></h1>

qqQq

开源协议

ISC