1.0.0 • Published 3 years ago

playboy123 v1.0.0

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

说明文件:不强制要求,一般用来提示用户如何使用

安装

npm install itheima-tools

导入

const ithema = require('itheima-tools')

时间格式化(当前时间)

const now = itheima.dateFormat('YYYY-mm-dd HH:ii:ss')
console.log(now)
// 结果:2121-11-06 16:20:53

html实体化和反转

// 实体化
const htmlEncode = itheima.htmlEscape('<div class="current">hello world</div>')
console.log(htmlEncode)
// 结果:&lt;div class=&quot;current&quot;&gt;hello world&lt;/div&gt;

// 反转
const htmlDecode = itheima.htmlEscapeUncode('&lt;div class=&quot;current&quot;&gt;hello  world&lt;/div&gt;')
console.log(htmlDecode)
// 结果:<div class="current">hello world</div>