1.0.0 • Published 1 year ago

itheima-tools-gujiao v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

安装方式

npm install itheima-tools-gujiao

导入方式

const itheima = require("./itheima-tools-gujiao/index");

格式化时间

const dtStr = itheima.dateFormat(new Date());
console.log(dtStr);

转译 HTML 中的特殊字符

// 待转译的HTML字符
const str = itheima.htmlEscape(htmlStr);
// 输出结果:<h1 title="abc">这是一个h1标签<span>123 </span></h1>
console.log(str);

还原 HTML 中的特殊字符

// 待还原的HTML字符
const htmlStr2 = itheima.htmlUnEscape(str2);
// 输出结果:<h1 title="abc">这是一个h1标签<span>123&nbsp;</span></h1>
console.log(htmlStr2);

开源协议

ISC