1.0.0 • Published 1 year ago

itheima-tools-yly v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago
npm install itheima-tools-yly

导入

const itheima = require('itheima-tools-yly')

格式化时间

// 调用dataFormat对时间进行格式化
const dt = index.dataFormat(new Date());
console.log(dt);

转义 HTML 中的特殊字符

// 待转换的HTML字符串
const htmlStr = '<h1>这是一个"待转义"的HTML字符串&nbps;</h1>';
// 调用htmlEscape方法进行转换
const str = itheima.htmlEscape(htmlStr);
// 转换的结果 &lt;h1&gt;这是一个&quot;待转义&quot;的HTML字符串&amp;nbps;&lt;/h1&gt;
console.log(str);

还原 HTML 中的特殊字符

// 待还原的HTML字符串
const str2 = index.htmlUnEscape(str));
// 输出的结果 <h1>这是一个"待转义"的HTML字符串&nbps;</h1>
console.log(str);

开源协议

ISC