1.0.0 • Published 5 years ago
itheima-tools-a v1.0.0
安装
npm install itheima-tools1.0.0
导入
const itheima = require('itheima-tools-a')
格式化时间
//调用dateFormat格式化时间
const dtStr = itheima.dateFormat(new Date())
console.log(dtStr);
// 结果 2020-10-19 23:18:54
带转换的 html 特殊字符
// 调用htmlEscape将html转义
const str =itheima.htmlEscape('<h1 id="h1">你好,中国<span>4455 </span></h1>')
console.log(str)
// 结果 <h1 id="h1">你好,中国<span>4455&nbsp;</span></h1>
还原 html 字符
const str ='<h1 id="h1">你好,中国<span>4455&nbsp;</span></h1>'
const htmlStr = itheima.htmlUnEscape(str)
console.log(htmlStr);
// 结果<h1 id="h1">你好,中国<span>4455 </span></h1>
开源协议
ISC
1.0.0
5 years ago