UNPKG

itheima-tools-hdg

Version:

提供了格式化时间,HTMLEscape相关的功能

15 lines (12 loc) 400 B
const itheima = require('./index') //格式化时间的功能 const dtStr = itheima.dateFormat(new Date()) console.log(dtStr) console.log('---------') // 转义字符 const htmlStr = '<h1 title = "abc">这是h1标签<span>123&nbsp;</span></h1>' const str = itheima.htmlEscape(htmlStr) console.log(str) console.log('---------') const str2 = itheima.htmlUnEscape(str) console.log(str2)