1.0.0 • Published 2 years ago

wjshuai-tools v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

使用方式

安装

npm install wjshuai-tools

导入

const shuaitools = require('wjshuai-tools')

功能

格式化时间

const dtStr = shuaitools.dateFormat(new Date())
console.log(dtStr) //result 2022-06-22 10:39:10

转义html

const htmlStr = '<h1 style="color: red;"你好!&copy;<span>小黄!</span></h1>'
const str = shuaitools.htmlEscape(htmlStr)
console.log(str)//&lt;h1 style=&quot: red;&quot;&gt...