1.0.1 • Published 12 months ago

hz-tools v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
12 months ago

安装

npm i hz-tools

导入

const tools = require('my-tools')

格式化时间的使用方法

// 调用时间格式化方法
const item = tools.dateFormat(new Date())
console.log(item) // 输出结果:2023-05-28 16:20:14

转义 HTML 中的特殊字符

const str = tools.htmlEscape('<h1 style="color:red">HZ</h1>')
console.log(str) // 输出结果:&lth1 style="color:red"&gtHZ&lt/h1&gt

还原 HTML 中的特殊字符

const strUn = tools.htmlUnEscape('&lth1 style="color:red"&gtHZ&lt/h1&gt')
console.log(strUn) // 输出结果:<h1 style="color:red">HZ</h1>

开源协议

ISC

1.0.1

12 months ago

1.0.0

12 months ago