xgl-utils
v1.0.0
Published
xgl 提供的时间格式化以及HTMLEscape相关的功能
Downloads
11
Readme
xgl-utils 的使用说明
1. 安装
npm install xgl-utils
2. 导入
const xgl = require('xgl-utils')
3. 使用 dateFormat 函数
const dt = xgl.dateFormat(new Date())
// 输出结果 2024-11-13 12:09:41
console.log(dt)
4. 使用 htmlEscape 函数
// 待转换的 HTML 字符串
let str = '<h1 style="color=red">我是标题<span>span标签 </span></h1>'
// 输出结果 <h1 style="color=red">我是标题<span>span标签&nbsp;</span></h1>
str = xgl.htmlEscape(str)
console.log(str)
5. 使用 htmlUnEscape 函数
// 待还原的 HTML 字符串
let str = <h1 style="color=red">我是标题<span>span标签&nbsp;</span></h1>
str = xgl.htmlUnEscape(str)
// 输出结果 <h1 style="color=red">我是标题<span>span标签 </span></h1>
console.log(str)