1.0.0 • Published 8 years ago

holiday-jp v1.0.0

Weekly downloads
5
License
MIT
Repository
github
Last release
8 years ago

node-holiday-jp

JavaScript porting of holiday_jp

Installation

npm install holiday-jp

Usage

var holiday = require('holiday-jp')

// find holidays between 3/6/2014 ~ 30/9/2014
// returns Array of Object (see below for their properties)
holiday.between(new Date(2014, 5, 3), new Date(2014, 8, 30))

// whether given date is holiday or not
// return true (or false)
holiday.isHoliday(new Date(2014, 10, 3))

Properties

  • name: String - name of the holiday (ex. "文化の日")
  • nameEn: String - English translation (ex. "National Culture Day")
  • wdayName: String - day of the week (ex. "月")
  • date: Date - Date object of the holiday (ex. Mon Nov 03 2014 00:00:00 GMT+0900 (JST))

License

MIT