1.0.0 • Published 3 years ago
codechen-utils v1.0.0
安装
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); // <h1 title="hi"> hello <h1>
还原html特殊字符
const htmlUnstr = codechen.htmlUnEscape(htmlStr)
console.log(htmlUnstr); // <h1 title="hi">hello<h1>
开源协议
ISC
1.0.0
3 years ago