xws-ubils
v0.0.1
Published
这是一个格式化时间和转义html标签的包
Downloads
1
Readme
Install
npm i xws-ubils12
Require
const utlis = require('xws-ubils')
Usage
- 格式化日期
// 调用格式化日期函数
const dt = utlis.dateFormat('2021-1-1')
console.log(dt);
- 转义 html 标签
// 转义 html 标签的函数调用
const res = utlis.escapeHTML('<span style="color: aqua;">hello &</span>')
console.log(res);
- 还原 html 标签
// 还原 html 标签的函数调用
const res2 = utlis.unescapeHTML('<span style="color: aqua;">hello &amp</span>')
console.log(res2);