UNPKG

itxiaoyou-tools

Version:

提供了格式化时间、HTMLEscape相关的功能

14 lines (9 loc) 234 B
// 包的入口文件 // 导出模块 const dateFormat = require('./src/dateFormat') const htmlEscape= require('./src/htmlEscape') // 向外暴露需要的成员 module.exports = { ...dateFormat, ...htmlEscape, }