0.0.1 • Published 3 years ago
xiaotao-tools v0.0.1
安装
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);
// 结果 <h1>你好</h1>
还原 HTML 中的特殊字符
console.log(xiaotao.unescapeHtml(html));
// 结果 <h1>你好</h1>
开源协议
ISC
0.0.1
3 years ago