itthmain-tool
v1.0.0
Published
提供了格式化时间,HTMLEscape的功能
Downloads
1
Maintainers
Readme
安装
npm install itthmain-tool
导入
let itthmain=require('./index')
格式化时间
// 调用 dataFormat 对时间进行格式化
const dtStr=itthmain. (new Date())
转义 html 中的特殊字符
// 调用 htmlEscape 方法进行转换
const htmlStr = '<h1 title="abc">这是h1标签<span>123 </span></好>';
// 转换结果 <h1 title="abc">这是h1标签<span>123&nbsp;</span></好>