1.0.0 • Published 2 years ago

itheima-tools-pete v1.0.0

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

安装

npm install itheima-tools

导入

const itheima = require("itheima-tools");

格式化时间

const dtStr = itheima.dateFormat(new Date());
console.log(dtStr);
//结果 2021:12:01 16:00:27

转义 HTML 字符串

const htmlStr = '这是>和<还有"和&';
const str = itheima.htmlEscape(htmlStr);
console.log(str);
//结果 这是&gt;和&lt;还有&quot;和&amp;

还原 HTML 字符串

const str2 = itheima.UnEscapeHtml(str);
console.log(str2);
//结果 这是>和<还有"和&

开源协议

ISC