1.0.0 • Published 2 years ago

chenm-tools v1.0.0

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

安装

npm install chenm-tools

导入

js const chenm=require('chenm-tools')

格式化时间

js //调用dateFormat 对时间进行格式化 const dtStr=chenm.dateFormat(new Date()) //结果:2022-05-07 15:02:00

转译html中的特殊字符

js //带转换的html字符串 const htmlStr ='这是h1标签123 ' //调用htmlEscape方法进行转换 const str =chenm.htmlEscape(htmlUnEscape) //结果 <h1 title="abc">这是h1标签<span>123&nbsp;</span></h1>

还原html中的特殊字符

js //带还原的html字符串 const htmlUnEscape ='<h1 title="abc">这是h1标签<span>123&nbsp;</span></h1>' //调用htmlUnescape方法进行转换 const str =chenm.htmlUnEscape(htmlUnEscape) //结果

开源协议

ISC