cangjie-tools
v1.0.0
Published
这个包提供了格式化时间、HTMLEscape相关的功能
Downloads
1
Maintainers
Readme
安装
npm install cangjie-tools
导入
const canjie = require('./cangjie-tools')
格式化时间
const dtStr = cangjie.dateFormat(new Date())
// 结果2022-03-11 20:43:35
console.log(dtStr)
转义 HTML 中的字符 和 还原 HTML 中的字符
// 带转换的HTML字符串
const htmlStr = '<h1>这是h1标签<span>123 </span></h1>';
// 带即将还原的HTML字符串
const htmlStr1 = '<h1>这是h1标签<span>123&nbsp;</span></h1>'
// 调用htmlEscape方法
const str = cangjie.htmlEscape(htmlStr);
const str1 = cangjie.htmlUnescape(htmlStr1);
// 结果<h1>这是h1标签<span>123&nbsp;</span></h1>
console.log(str);
// 结果<h1>这是h1标签<span>123 </span></h1>
console.log(str1);