1.0.0 • Published 2 years ago

zhans_heng_tao v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

##安装

npm install zst

##导入

  const dae = require("zst");

##格式化时间

// 调用dateFormat对时间进行格式化
const ds = dae.dateFormat(new Date());
console.log(ds);

##转义 HTML 中的特殊字符

const htmlstr = "<h1 title='abc'>标签</h1>";
const str = dae.htmlEscape(htmlstr);
console.log(str);// "&lt;h1 title='abc'&gt;标签&lt;/h1&gt;"