UNPKG

tools-zhaoshuaiqi

Version:

提供了格式化时间,HTML.Escape相关的功能

9 lines (8 loc) 317 B
//这是包的入口文件 const dataFormatsrc = require('./src/dateFormat') const htmlEscapesrc = require('./src/htmlEscape') // ...是解构赋值,把dataFormatsrc和htmlEscapesrc中的内容都解构出来,然后放到module.exports中 module.exports = { ...dataFormatsrc, ...htmlEscapesrc }