itheima-toolsbynm
v1.0.0
Published
提供了格式化时间,HTMLEscape的功能
Downloads
4
Maintainers
Readme
##安装
npm install itheima-toolsbynm
##导入
const itheima = require('./itheima-toolsbynm')
##格式化时间
const nowTime = new Date()
//调用dateFormat 对时间进行格式化
console.log(itheima.dataFormat(nowTime))
//结果:2024-05-22 10:42:44
##转义HTML字符
const str = '<h1>hello</h1>'
//调用htmlEscape进行HTML字符转义
console.log(itheima.htmlEscape(str))
//结果:<h1>hello</h1>
##还原HTML字符
const newstr = '<h1>hello</h1>'
//调用htmlUnescape进行特殊字符还原为HTML标签
console.log(itheima.htmlUnescape(newstr))
//结果:<h1>hello</h1>
##许可协议 ISC