itheima-tools-lzj
v1.0.1
Published
提供了格式化时间,HTMLEscape等相关功能(李)
Downloads
2
Maintainers
Readme
安装
npm install itheima-tools-lzj
导入
const itheima = require('itheima-tools-lzj')
格式化时间
// 实例化时间对象(返回当前时间)
const dt = new Date()
// 调用dateFomat 对时间格式化
const dtFormat = itheima.dateFomat(dt)
// 打印结果 2021-08-27 20:20:20
console.log(str)
转义 HTML 中的特殊字符
// 带转换的 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 str2 = itheima.htmlUnEscape(str)
// 打印结果 <h1 title="abc">这是h1标签<span>123 </span></h1>
console.log(str2)
开源协议
ISC