1.0.0 • Published 4 years ago

hgl28122 v1.0.0

Weekly downloads
47
License
ISC
Repository
-
Last release
4 years ago

安装

npm i hgl-utils

导入

const utils = require('hgl-utils')

使用

  • 格式化时间
const dt = utils.dateFormat(new Date())
console.log(dt);
  • 转义 html 特殊字符
const htmlStr = utils.htmlEscape('<span style="color:red">hello&nbsp;</span>')
console.log(htmlStr);
  • 还原 html 特殊字符
const html = utils.htmlUnEscape('&lt;span style=&quot;color:red&quot;&gt;hello&amp;nbsp;&lt;/span&gt;')
console.log(html);
1.0.0

4 years ago