UNPKG
itxiaoyou-tools
Version:
latest (1.0.2)
1.0.2
1.0.1
提供了格式化时间、HTMLEscape相关的功能
itxiaoyou-tools
/
index.js
14 lines
(9 loc)
•
234 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 包的入口文件
// 导出模块
const
dateFormat =
require
(
'./src/dateFormat'
)
const
htmlEscape=
require
(
'./src/htmlEscape'
)
// 向外暴露需要的成员
module
.
exports
= { ...dateFormat, ...htmlEscape, }