1.0.0 • Published 2 years ago

yzhdmw v1.0.0

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

安装

npm install yzh

导入

const yzh = require("yzh");

格式化时间

//调用dateformat方法处理时间
const ti = y.dateformat(new Date());
//结果 2022-09-17 15:11:04
console.log(ti);

转移特殊字符

const str = "<h1>123</h1>";
const s = y.htmlexcape(str);
//结果 &lt;h1&gt;123&lt;/h1&gt;
console.log(s);

还原特殊字符

const ss = y.htmlunexcape(s);
//结果 <h1>123</h1>    
console.log(ss);

开源协议

ISC