UNPKG

itheima-tools-zhangsan

Version:

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

13 lines (7 loc) 275 B
const itheima = require('./index'); const dtStr = itheima.dateFormat(new Date()) console.log(dtStr); const htmlStr = '<h1 title="abc">这是h1标签<span>123&nbsp;</span></h1>'; const str = itheima.htmlEscape(htmlStr) console.log(htmlStr); console.log(str);