今天要上班吗?
$ npm install chinese-workday
// const { isWorkday, isHoiday, getFestival } = require('chinese-workday');
const ww = require('chinese-workday');
const isWorkday = ww.isWorkday;
const isHoliday = ww.isHoliday;
const getFestival = ww.getFestival;
isWorkday('2018-10-01')
// => false
isHoliday('2018-10-01')
// => true
getFesival('2018-10-01')
// => 国庆节
Note: Since 2018