wzb-utils-857
v1.0.0
Published
这是一个格式化时间转义html标签的包
Downloads
1
Readme
Install
npm i wzb-utlis
Require
const utils = require('./wzb-utlis')
usage
-格式化日期
//调用格式化日期
const dt = utils.formatDate('2021-2-21')
console.log(dt);
-转义html标签
//调用转义html标签的方法
const res = utils.escapeHTML('<span style="color:red">hello</span>')
console.log(res);
-还原转义的html标签
//调用还原html标签的方法
const res2 = utils.unescapeHTML('<span style="color:red">hello</span>')
console.log(res2);
开源协议
MIT