1.0.0 • Published 3 years ago
panyl-tools v1.0.0
##安裝
npm install panyl-tools
##导入
const panyl = require("panyl-tools");
##格式化时间
// 调用dateFormat对时间进行格式化
const dtStr = panyl.dateFormat(new Date());
// 结果 2022-02-10 23:32:07
##转义 HTML 中的特殊字符
// 待转换的HTML字符串
const htmlStr = '<h1 title="abc">这是h1标签<span>123 </span></h1>';
// 调用htmlEscape()方法进行转换
const str = panyl.htmlEscape(htmlStr);
// 转换的结果 <h1 title="abc">这是h1标签<span>123&nbsp;</span></h1>
console.log(str);
##还原 HTML 中的特殊字符
// 待还原的HTML字符串
const html_Str =
"<h1 title="abc">这是h1标签<span>123&nbsp;</span></h1>";
// 调用htmlEscape()方法进行还原
const new_str = panyl.htmlUnEscape(html_Str);
// 结果 <h1 title="abc">这是h1标签<span>123 </span></h1>
console.log(new_str);
##开源协议
ISC
1.0.0
3 years ago