0.0.1 • Published 4 years ago

hww-utils-437 v0.0.1

Weekly downloads
47
License
MIT
Repository
-
Last release
4 years ago

Install 安装

npm i hww-utils

导入

const utils = require('hww-utils')

Usage 使用方法

  • 格式化日期
const dt = utils.formatDate('2021-1-1')
console.log(dt)

//调用转义的html标签的方法

const res = utils.escapeHTML('<span style="color: red">hello</span>')
console.log(res);

//调用还原html 标签的方法

const res2 = utils.unEscapeHTML('<span style="color: red">hello</span>')
console.log(res2);