(year)
| 168 | } |
| 169 | |
| 170 | export default function getHolidays(year) { |
| 171 | const easterHolidays = getEasterHolidays(year); |
| 172 | const nationalHolidays = getNationalHolidays(year); |
| 173 | return sortByDate([...easterHolidays, ...nationalHolidays]); |
| 174 | } |
no test coverage detected