UNPKG

huangluoxuan-tools

Version:

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

10 lines (8 loc) 266 B
const tool = require("./index") const str = tool.dateFormat(new Date()) console.log(str) const htmlStr = '<h1 title="abc">测试&nbsp;</h1>' const str1 = tool.htmlEscape(htmlStr) console.log(str1+"\n-------") const str2 = tool.htmlUnEscape(str1) console.log(str2)