scarlett-tool
v1.0.1
Published
提供了格式化时间、HtmlEscape功能
Maintainers
Readme
安装
npm install mytools导入
const test = require('./mytools');格式化时间
//调用dateFormat
const dt = test.dateFormat(new Date());
console.log(dt);转义
const html = '<h1 title="a">这是标签</h1>';
const str = test.htmlEscape(html)
console.log(str); //<h1 title="a">这是标签</h1>
console.log(test.htmlUnEscape(str));//<h1 title="a">这是标签</h1>开源协议
ISC
