UNPKG
itheima-tools-babamama
Version:
latest (1.1.0)
1.1.0
提供了格式化时间,两只老虎
itheima-tools-babamama
/
index.js
15 lines
(9 loc)
•
285 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 这是包的入口文件
const
date =
require
(
'./src/dateFormat'
)
const
eacape =
require
(
'./src/htmlEscape'
)
// 向外暴露方法
module
.
exports
= {
// 把这个对象展开了向外暴露,方便获取这个对象里面的方法
...date, ...eacape }