itheima-tools-kellay
v1.0.0
Published
提供了格式化时间、HTMLEscape相关的功能
Downloads
11
Readme
安装
npm install itheima-tools-kellay
导入
const kellay = require('itheima-tools-kellay')
格式化时间
const dtStr = kellay.dateFormat(new Date())
console.log(dtStr)
转义HTML中的特殊字符
const htmlStr = '<h1> hello world <span> 这是标签  </span></h1>'
const str = kellay.HTMLEscape(htmlStr)
console.log(str)
还原HTML中的特殊字符
console.log(kellay.HTMLRecover(str))
开源协议
ISC