holiday-hk

0.0.1 • Public • Published

Hong Kong Holiday

  • List of Hong Kong Holiday between 2018-2020.
  • Determine is the day is holiday or not.
  • Show Hong Kong Holiday Information.

Install

#NPM 
npm i holiday-hk --save

Example

const holidayHK = require("holiday-hk");
 
// Fetch all Hong Kong Holiday list
holidayHK.listAll(); // Return Holiday List [{date: Date, desEn: String, desZH: String, desSc: String}...]
 
// Determine Is the day is holiday or not
const xmas = new Date("2020-12-25"); // Xams
holidayHK.isHoliday(xmas); // Retrun true
 
const sunday = new Date("2020-03-15"); // Sunday
holidayHK.isHoliday(sunday); // Retrun false, Because it is Sunday
 
const workday = new Date("2020-12-28"); // Workday
holidayHK.isHoliday(workday); // Retrun false, Because it is Workday
 
const xmas = new Date("2020-12-25"); // Xams
holidayHK.getHolidayInfo(xmas); // Return {date: Date, desEn: String, desZH: String, desSc: String}

Method

Method Return Type
listAll() Array
isHoliday() Boolean
getHolidayInfo() Object

Properties

Property Type Example
date Date 2020-12-26T00:00:00.000Z
desEn String Christmas Day
desZh String 聖誕節
desSc String 圣诞节

License

MIT

ChangeLog

End

Free Hong Kong, Revolution now
Five demands, not one less

Dependents (0)

Package Sidebar

Install

npm i holiday-hk

Weekly Downloads

10

Version

0.0.1

License

ISC

Unpacked Size

46.9 kB

Total Files

10

Last publish

Collaborators

  • noctisyeung