UNPKG
react-timelines
Version:
latest (2.6.1)
next (2.7.0-a09c3ab)
2.7.0-a09c3ab
2.6.1
2.6.0
2.5.2
2.5.1
2.5.0
2.3.0
2.2.1
2.2.0
2.1.0
2.0.0
1.5.4
1.5.3
1.5.2
1.5.1
1.5.0
1.4.0
1.3.3
1.3.2
1.3.1
1.2.2
1.2.0
1.1.0
1.0.1
1.0.0
0.6.3
0.6.2
0.6.1
0.5.0
0.4.1
0.4.0
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
React Timelines
github.com/JSainsburyPLC/react-timelines
JSainsburyPLC/react-timelines
react-timelines
/
src
/
utils
/
formatDate.js
6 lines
(3 loc)
•
239 B
JavaScript
View Raw
1
2
3
4
5
6
const
monthNames = [
'Jan'
,
'Feb'
,
'Mar'
,
'Apr'
,
'May'
,
'Jun'
,
'Jul'
,
'Aug'
,
'Sep'
,
'Oct'
,
'Nov'
,
'Dec'
]
export
const
getMonth
= date => monthNames[date.
getMonth
()]
export
const
getDayMonth
= date =>
`
${date.getDate()}
${getMonth(date)}
`