mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-12 11:15:12 +00:00
14 lines
339 B
JavaScript
Executable File
14 lines
339 B
JavaScript
Executable File
const { HolidaysService } = require("m3o/holidays");
|
|
|
|
// List the holiday dates for a given country and year
|
|
async function getHolidays() {
|
|
let holidaysService = new HolidaysService(process.env.MICRO_API_TOKEN);
|
|
let rsp = await holidaysService.list({
|
|
country_code: "GB",
|
|
year: 2022,
|
|
});
|
|
console.log(rsp);
|
|
}
|
|
|
|
getHolidays();
|