1.0.1 • Published 2 years ago

itfan_tools v1.0.1

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

安装

nmp install itfan_tools

导入

const itfan = require('itfan_tools')

格式化时间

//调用 dataFormat对时间进行格式化
//结果 2022-08-26 15:17:04
const dtstr = itfan.dataFormat(new Date())
console.log(dtstr)

转义html特殊字符

const htmlstr = '<h1>' + 'hello' + '</h1>'
const str = itfan.htmlescape(htmlstr)

还原html特殊字符

const htmlstr = '&lt;h1&gt;hello&lt;/h1&gt;'
const str = itfan.htmlunescape(htmlstr)

开源协议

ISC