(d)
| 38 | } |
| 39 | |
| 40 | export function getShortMonth (d) { |
| 41 | let month = d.getMonth(); |
| 42 | return getLang('datetime.shortMonth')[month]; |
| 43 | } |
| 44 | |
| 45 | export function getDayOfWeek (d) { |
| 46 | let weekday = d.getDay(); |
nothing calls this directly
no test coverage detected
searching dependent graphs…