poland-public-holidays
A small but comprehensive, fully tested library that computes the dates of public holidays in Poland.
Usage
npm install poland-public-holidays
const {isHoliday, getHolidaysInYear, getHolidayOnDate} = require('poland-public-holidays')
isHoliday('2018-05-01')
isHoliday(new Date('2020-04-12'))
isHoliday(new Date('2020-12-03'))
getHolidayOnDate('2016-05-26').name
getHolidayOnDate('1978-10-02')
getHolidayOnDate(new Date('1990-12-25')).name
getHolidayOnDate(new Date('2018-11-09'))
const holidaysIn2020 = getHolidaysInYear(2020);
holidaysIn2020.length
holidaysIn2020[0].name
holidaysIn2020[0].namePL
holidaysIn2020[0].date
API
getHolidaysInYear(year)
Accepts a valid Date
object, a valid ISO8601 date string or a positive number (below 275760, the maximum year in JS). Returns an array of objects containing information about public holidays in the given year. The holiday objects will have the following properties:
date
- a Date
instance set to the day when the holiday is observedname
- the English name of the holidaynamePL
- the Polish name of the holiday
isHoliday(date)
Accepts a valid Date
object or a valid ISO8601 date string. Returns true
if there is a public holiday on the given date, and false
if there is not.
getHolidayOnDate(date)
Accepts a valid Date
object or a valid ISO8601 date string. Returns an object with information about the holiday if there is a public holiday on the given date, and undefined
if there is not. The object will have the same properties as the ones in the array returned by getHolidaysInYear
.
License
Copyright 2021 Kamil Szydlowski
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.