UNPKG
myp-timetool
Version:
latest (0.1.0)
0.1.0
提供了格式化时间功能
myp-timetool
/
index.js
9 lines
(7 loc)
•
211 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
//这是包的入口文件
const
dataFormat =
require
(
'./src/dataFormat'
)
const
getDay =
require
(
'./src/getDay'
)
module
.
exports
= { ...dataFormat,
//对里面的每一个属性展开
...getDay }