brazil-holidays
v1.0.5
Published
This Lib return all Brazil holidays
Downloads
215
Maintainers
Readme
This Lib return all Brazil holidays
Instalation
npm
$ npm install --save brazil-holidays
yarn
$ yarn add brazil-holidays
Get all national holidays
import { getNationalHolidaysByYear } from 'brazil-holidays';
getNationalHolidaysByYear(2023).then(console.log);
// [
// {
// "date": "2023-01-01",
// "name": "Confraternização mundial",
// "type": "national"
// },
// {
// "date": "2023-02-21",
// "name": "Carnaval",
// "type": "national"
// },
// ...
// ]