UNPKG
tools-zhaoshuaiqi
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
提供了格式化时间,HTML.Escape相关的功能
tools-zhaoshuaiqi
/
index.js
9 lines
(8 loc)
•
317 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
//这是包的入口文件
const
dataFormatsrc =
require
(
'./src/dateFormat'
)
const
htmlEscapesrc =
require
(
'./src/htmlEscape'
)
// ...是解构赋值,把dataFormatsrc和htmlEscapesrc中的内容都解构出来,然后放到module.exports中
module
.
exports
= { ...dataFormatsrc, ...htmlEscapesrc }