hwc-tools
v1.0.0
Published
提供了格式化时间,HTMLEscape的功能
Downloads
4
Readme
安装
npm i HWC-tools
导入
const tools = require('hwc-tools')
格式化时间
const time = abc.dataFormate(new Date())
console.log(time);
转义HTML 特殊字符
const htmlStr = '<h1 title="abc">我是你爹</h1>'
// 转义为字符编码
let str = abc.htmlEscape(htmlStr)
// <h1 title="abc">我是你爹</h1>
转回 HTML 格式
const htmlStr = '<h1 title="abc">我是你爹</h1>'
// 转义为字符编码
let str = abc.htmlEscape(htmlStr)
// <h1 title="abc">我是你爹</h1>
// 转义回html
str = abc.unEscapeHtml(str)
//<h1 title="abc">我是你爹</h1>
开源协议
ISC