yf-tools
v1.0.0
Published
提供了格式化时间、HTMLEscape的功能
Downloads
12
Readme
安装
npm install yf-tools
导入
const yfTools = require('yf-tools');
格式化时间
const time = utils.formatTime(new Date())
console.log('time:', time)
// 结果 time: 2022-08-25 15-01-40
转义html中的特殊字符
const html = '<h1>good study<span>>100分</span></h1>'
const escapeHtml = utils.htmlEscape(html)
console.log('escapeHtml', escapeHtml)
// 结果 escapeHtml <h1>good study<span>&gt;100分</span></h1>
特殊字符还原为html
const html = '<h1>good study<span>>100分</span></h1>'
const unescapeHtml = utils.htmlUnEscape('<h1>good study<span>&gt;100分</span></h1>')
console.log('unescapeHtml', unescapeHtml)
// 结果 unescapeHtml <h1>good study<span>>100分</span></h1>