xlh-tools
v1.0.1
Published
提供了格式化时间,HTMLEscape的功能
Downloads
11
Readme
安装
npm install tools
导入
const tools = require('tools')
格式化时间
const c = tools.dateFormat(new Date())
console.log(c);
转义HTML中的特殊字符
const htmlstr = '<h1 title="abc">这是一个h1标签<span>123 </span></h1>'
const a = tools.htmlEscape(htmlstr)
const b = tools.htmlUnescape(a)
console.log(a);
console.log(b);
开源协议
ISC