通用函数工具库
npm install itool
import { formatTime, htmlEscape,htmlUnEscape,formatMoney } form 'itool'
//时间格式化
const time = new Date()
const formatTime = formatTime(time) //2022年1月22日 21:03:55
const formatTime = formatTime(time, false) //21:03:55
// 人民币格式化
const formatMoney = formatMoney(12345.678) // ¥12,345.68
// html转义(防止xxs攻击)
const htmlEscape = htmlEscape('<h1>hello</h1>') // <h1>hello</h1>
// 浏览器缓存
cache.setCache(key, value) // 设置
cache.getCache(key) // 获取
cache.deleceCache(key) // 删除
cache.clearCache() // 清空
ISC