1.0.0 • Published 3 years ago

codechen-utils v1.0.0

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

安装

npm i codechen-utils -S

导入

const codechen = require('./codechen-utils/index.js')

格式化时间的使用

const dateStr = codechen.timeFormat(new Date())
console.log(dateStr); // 2022-09-23 22:00:03

转义html特殊字符

const htmlStr = codechen.htmlEscape('<h1 title="hi">hello<h1>')
console.log(htmlStr); // &lt;h1 title=&quot;hi&quot;&gt; hello &lt;h1&gt;

还原html特殊字符

const htmlUnstr = codechen.htmlUnEscape(htmlStr)
console.log(htmlUnstr); // <h1 title="hi">hello<h1>

开源协议

ISC