1.0.0 • Published 12 months ago

itheima-tools-ezra v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
12 months ago

安装

npm install itheima-tools_Ezra 

导入

const itheima = require('itheima-tools-ezra');

格式化时间

// 调用 dateFormat 对时间进行格式化
const dateFormat = itheima.dateFormat(new Date());
// 结果 2024-08-21 19:48:25
console.log(dateFormat);

转译 HTML 中的特殊字符

// 待转换的 HTML 字符
const htmlString = '<h1>这是一个h1标签<span>123&nbsp;</span>></h1>';
// 调用 htmlEscape 方法进行转换
const string = itheima.htmlEscape(htmlString);
// 结果 &lt;h1&gt;这是一个h1标签&lt;span&gt;123&amp;nbsp;&lt;/span&gt;&gt;&lt;/h1&gt;
console.log(string);

还原 HTML 中的特殊字符

// 待还原的 HTML 字符
const string = '&lt;h1&gt;这是一个h1标签&lt;span&gt;123&amp;nbsp;&lt;/span&gt;&gt;&lt;/h1&gt;';
// 调用 htmlUnEscape 方法进行还原
const htmlString = itheima.htmlUnEscape(string);
// 结果 <h1>这是一个h1标签<span>123&nbsp;</span>></h1>
console.log(htmlString)

开源协议

ISC

1.0.0

12 months ago