1.0.0 • Published 1 year ago

itheima_mytools02 v1.0.0

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

安装

npm install itheima_mytools02

导入

const itheima = require('./itheima_mytools02')

格式化时间

const date = new Date()
// 2023-01-08 17:48:16
console.log(mymoment.dateFormat(date));

转义html中的特殊字符

const htmlstr = '<div class="abc">我是html字符</div>'
//  &lt;div class=&quot;abc&quot;&gt;我是html字符&lt;/div&gt;
console.log(mymoment.htmlEscape(htmlstr));

还原html中的特殊字符

const htmlstr = '&lt;div class=&quot;abc&quot;&gt;我是html字符&lt;/div&gt;'
//   <div class="abc">我是html字符</div>
console.log(mymoment.htmlEscape(htmlstr));

开源协议

ISC