1.0.0 • Published 5 years ago
itheima-oyy-tools v1.0.0
安装
npm install itheima-oyy-tools
导入
const itheima = require("itheima-oyy-tools");
格式化时间
//调用 dateFormat 对时间进行格式化
const dt = custom.dateFormat(new Date());
// 结果 2021-01-08 19:43:29
console.log(dt);
转义 HTML 中的特殊字符
//带转换的 HTML 字符串
const htmlStr = '<h1 title="abc">这是一个标题<span>abc </span></h>'
//调用htmlEscape 这个方法进行转换
const str = custom.htmlEscape(htmlStr);
// 转换的结果 <h1 title="abc">这是一个标题<span>abc&nbsp;</span></h>
console.log(str);
还原 HTML 中的特殊字符
//带还原的 HTML 字符串
//调用htmlEscape 这个方法进行转换
const str2 = custom.htmlUnEscape(str);
// 转换的结果 <h1 title="abc">这是一个标题<span>abc&nbsp;</span></h>
console.log(str2)
开源协议
ISC
1.0.0
5 years ago