1.0.0 • Published 2 years ago
itheima1q v1.0.0
安装
npm install itheima-tools
导入
const itheima = require("./itheima-tools/index")
格式化时间
//调用格式化时间的dateformat
const str = itheima.dataFormat(new Date())
转义 HTML 字符的函数
// 待转换的 html 字符串
const htmlStr = '<h1 title="abc">这是一个h1标签<span>123</span></h1>'
// 调用 htmlEscape 方法进行转换
const newStr = itheima.htmlEscape(htmlStr)
// 转换结果 <h1 title="abc">这是一个h1标签<span>123</span></h1>
console.log(newStr)
还原 HTML 字符的函数
// 待还原的 html 字符串
const htmlStr = '<h1 title="abc">这是一个h1标签<span>123</span></h1>'
// 调用 htmlUnEscape 方法进行转换
const newStr = itheima.htmlUnEscape(htmlStr)
// 转换结果 <h1 title="abc">这是一个h1标签<span>123</span></h1>
console.log(newStr)
开源协议
ISC
1.0.0
2 years ago