1.0.0 • Published 1 year ago

dwl-tools v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

安装

npm install dwl-tools

导入javascript

const dwltools = require('dwl-tools')

格式化时间

const dtStr = t.dataFormat(new Date())
console.log(dtStr) //结果  2024-03-14 21:11:20

转义和还原HTML代码

const htmlStr = '<h1 style="abc">123&nbsp;</h1>'
const htmlStr1 = t.htmlEscapse(htmlStr)
console.log(htmlStr1); //结果:&lt;h1 style=&quot;abc&quot;&gt;123&amp;nbsp;&lt;/h1&gt;
console.log(t.htmlUnEscape(htmlStr1)); //结果:<h1 style="abc">123&nbsp;</h1>

开源协议

ISC

1.0.0

1 year ago