1.0.0 • Published 1 year ago

itheima-toolsbynm v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

##安装

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))
//结果:&lt;h1&gt;hello&lt;/h1&gt;

##还原HTML字符

const newstr = '&lt;h1&gt;hello&lt;/h1&gt;'
//调用htmlUnescape进行特殊字符还原为HTML标签
console.log(itheima.htmlUnescape(newstr))
//结果:<h1>hello</h1>

##许可协议 ISC

1.0.0

1 year ago