1
2
3
4
5
6
7
8
9
10
11
import { fetchJSON } from "https://esm.town/v/stevekrouse/fetchJSON?v=41";
export const getHolidays = (country, year = new Date().getFullYear()) => {
try {
return fetchJSON(
`https://date.nager.at/api/v2/publicholidays/${year}/${country}`
);
} catch (err) {
return null;
}
};