0.0.1 • Published 3 years ago

xiaotao-tools v0.0.1

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

安装

npm install xiaotao-tools

导入

const xiaotao = require('./xiaotao-tools');

格式化时间

let dt = xiaotao.formatDate(new Date());
console.log(dt);
// 结果  2022-06-08 17:35:39 星期三

转义 HTML 中的特殊字符

let html = xiaotao.escapeHtml('<h1>你好</h1>');
console.log(html);
// 结果   &lt;h1&gt;你好&lt;/h1&gt;

还原 HTML 中的特殊字符

console.log(xiaotao.unescapeHtml(html));
// 结果  <h1>你好</h1>

开源协议

ISC