(d)
| 20 | } |
| 21 | |
| 22 | export function getFirstDayOfMonth (d) { |
| 23 | return new Date(d.getFullYear(), d.getMonth(), 1); |
| 24 | } |
| 25 | |
| 26 | export function getDaysInMonth (d) { |
| 27 | let resultDate = getFirstDayOfMonth(d); |
no outgoing calls
no test coverage detected
searching dependent graphs…