(d)
| 33 | } |
| 34 | |
| 35 | export function getFullMonth (d) { |
| 36 | let month = d.getMonth(); |
| 37 | return getLang('datetime.fullMonth')[month]; |
| 38 | } |
| 39 | |
| 40 | export function getShortMonth (d) { |
| 41 | let month = d.getMonth(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…