UNPKG
myp-timetool
Version:
latest (0.1.0)
0.1.0
提供了格式化时间功能
myp-timetool
/
README.md
13 lines
(9 loc)
•
269 B
Markdown
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
## 安装
npm install myp-moment
## 导入
const
myp
=
require
(
'myp-moment'
)
## 格式化时间
const
time
= myp.
dataFormat
(
new
Date
())
## 获取当前时间的前几天或者后几天
const
day
=
getDay
(
3
)
//三天后
const
day
=
getDay
(-
3
)
//三天前