1.0.0 • Published 6 years ago
yxb-tools v1.0.0
安装
npm install yxb-tools导入
const yxb = require('yxb-tools/index')格式化时间的方法
const dtStr = yxb.dateFormat(new Date())
console.log(dtStr);转译HTML字符串
const str = '<h1 title="aaa">这是h1标签<span>hello</span></h1>'
const htmlStr = yxb.htmlEscape(str)
console.log(htmlStr);
// <h1 title="aaa">这是h1标签<span>hello</span></h1>还原HTML字符串
const htmlUnStr = yxb.htmlUnEscape(htmlStr)
console.log(htmlUnStr);
// <h1 title="aaa">这是h1标签<span>hello</span></h1>开源许可协议
ISC
1.0.0
6 years ago