1.0.0 • Published 3 years ago
itxc-tools v1.0.0
安装
npm install itxc-tools
导入
const itheima = require('itxc-tools')
格式化时间
//调用 dataFormat 对时间进行格式
const dtStr = ithiema.dateFormat(new Date())
//结果 2022-07-31 14:00:00
转义HTML字符串
//待转换的HTML字符串
const str = '<h1>这是h1标签<span>123124 </span>/h1>'
//调用htmlEscape方法进行转换
const dtStr = itheima.htmlEscape(str)
console.log(dtStr)
// 结果<h1>这是h1标签<span>123124&nbsp</span>/h1>
还原HTML转义字符串
// 待还原的HTML字符串
const str2=itheima.htmlUnEscape(str);
// 输出的 结果 <h1 title="abc">这是html标签<span>123 </span></h1>
console.log(str2);
开源协议
ISC
1.0.0
3 years ago