UNPKG

node1-tools

Version:

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

12 lines (10 loc) 300 B
const index = require('../node-tools') const dtStr = index.dateFormat(new Date()) console.log(dtStr); const html = '<h1>这是h1标签&nbsp;</h1>' // 转义HTML const str = index.htmlEscape(html) console.log(str); // 还原HTML const newStr = index.htmlUnEscape(str) console.log(newStr);