tanggaohan-tools
v1.0.0
Published
提供了格式化时间,html功能
Downloads
2
Maintainers
Readme
安装
npm install tanggaohan-tools
导入
const tools = require('tools')
格式化时间
// 调用 dataFormatter 格式化时间
const dt = new Date();
const t1 = t2.dataFormat(dt);
// 结果:2021-01-01 12:00:00
转译 HTML 中的特殊字符
const htmlStr = '<h1 title="abc">这是h<span>123 </span>标签</h1>'
const str = tt.htmlEscape(htmlStr)
// 转译 HTML 特殊字符
console.log(str);
// 还原HTML中的特殊字符
console.log (tt.htmlUnEscape(str))
开源协议
ISC