1.0.0 • Published 2 years ago
xiaoxuan v1.0.0
##安装
npm install xiaoxuan
##导入
const it = require('xiaoxuan')
##格式化时间
//调用dateformat对时间转化
const date = dt.datefromat(new Date())
// 结果 2022-04-04 17:20:20
console.log(date);
##转义HTML中的特殊字符
// 定义带转换的HTML字符串
const str = '<h1 tite="abc">这是h1标签<span>123 </span></h1>'
//调用htmlEscape()方法进行转换
const rs = dt.htmlEscape(str)
//转换的结果<h1 tite=quot;abcquot;>这是h1标签<span>123&nbsp;</span></h1>
console.log(rs);
##还原HTML中特殊字符
//待还原的html字符串
const unrs = dt.htmlUnEscape(rs)
// 输出的结果<h1 title="abc">这是h1标签<span>123 </span></h1>
console.log(unrs);
##开源协议 ISC
1.0.0
2 years ago