1.0.0 • Published 2 years ago
itboqiu-tools v1.0.0
##安装
npm install itboqiu-tools
##导入
const itboqiu = require('itboqiu-tools')
##格式化时间
// 格式化时间功能
const dtStr = itboqiu.dateFormat(new Date())
console.log(dtStr);
// 结果 2022-11-11 14:25:30
##转义html
// 带转换的html字符串
const htmlStr = `<h1 title="abc">这是h1标签<span>123 </span></h1>`
// 调用htmlEscape方法进行转换
const str = itboqiu.htmlEscape(htmlStr)
// 结果 <h1 title="abc">这是h1标签<span>123undefinednbsp;</span></h1>
console.log(str);
##开源协议 ISC
1.0.0
2 years ago