itlhc-tools
v1.0.0
Published
提供了格式化时间,HTML Escape的功能
Downloads
4
Readme
package.json
包的管理配置文件
index.js
包的入口文件
README.md
包的说明文档
安装
、、、 npm install itlhc-tools 、、、
导入
、、、js const itlhc = require('itlhc-tools') 、、、
格式化时间
、、、js
const dtStr =itlhc.dataFormat(new Date())
转义HTML中的特殊字符
htmlEscape 转义 htmlUnEscape 还原
、、、js
const htmlStr='这是h1标签123 '
let s=itlhc.htmlEscape(htmlstr) console.log(s) 结果:<h1 title="abc">这是h1标签<span>123 </span></h1> 、、、
、、、js
const htmlStr='这是h1标签123 '
let s=itlhc.htmlEscape(shtmlStr)
let s2=itlhc.htmlUnEscape(s) console.log(s2); 结果:这是h1标签123 、、、
开源协议
ISC