itheima-tools-zzn
Version:
这个包提供了格式化时间 HTMLEscape功能
11 lines • 348 B
JavaScript
const itheima = require('./index')
// 格式化时间的功能
const date = itheima.dateFormat(new Date())
console.log(date);
const htmlStr = '<h1>"嘿嘿嘿"</h1>'
// 转义HTMl字符的函数
const str = itheima.htmlEscape(htmlStr)
console.log(str);
// 还原HTML字符的函数
const str2 = itheima.htmlUnEscape(str)
console.log(str2);