UNPKG
@abhijithvijayan/portfolio
Version:
latest (1.3.0)
1.3.0
1.2.1
1.2.0
1.1.0
1.0.0
CLI to use my portfolio site as a template to build yours!
@abhijithvijayan/portfolio
/
source
/
utils
/
moment.js
9 lines
(6 loc)
•
206 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
const
ts =
Date
.
now
();
const
date_ob =
new
Date
(ts);
const
date = date_ob.
getDate
();
const
month = date_ob.
getMonth
() +
1
;
const
year = date_ob.
getFullYear
();
module
.
exports
=
`
${date}
-
${month}
-
${year}
`
;