1.0.0 • Published 2 years ago

itheima-util v1.0.0

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

安装

npm install itheima-util

导入

const itheimaUtil = require('itheima-util');

格式化时间

const dateStr = itheimaUtil.dateFormat(new Date());
console.log(dateStr);

转移HTML中的特殊字符

const htmlStr = '<h1 title="abc">这是h1标签</h1>';
const resStr = itheimaUtil.htmlEscape(htmlStr);
console.log(resStr);
// 结果 &lt;h1 title=&quot;abc&quot;&gt;这是h1标签&lt;/h1&gt;

还原HTML中的特殊字符

const htmlStr = '&lt;h1 title=&quot;abc&quot;&gt;这是h1标签&lt;/h1&gt;';
const resStr = itheimaUtil.htmlUnEscape(htmlStr);
console.log(resStr);
// 结果 &lt;h1 title=&quot;abc&quot;&gt;这是h1标签&lt;/h1&gt;

开源协议

ISC