1.0.1 • Published 2 years ago

ithhs-tools v1.0.1

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

安装

npm install ithhs-tools

导入

const ithhsma = require("ithhs-tools")

格式化时间

// 调用 dateFormat 对时间进行格式化
const dtStr = ithhsma.dateFormat(new Date())
// 结果 2022-04-03 18:20:50
console.log(dtStr);

转义html字符

// 带转换的html字符
const htmlstr = "<h1>hhhhh</h1>"
// 调用htmlEscape方法
const str =it.htmlEscape(htmlstr)
// 转换结果 &lt;h1&gt;hhhhh&lt;/h1&gt;
console.log(str);
1.0.1

2 years ago

1.0.0

2 years ago