# isHolidayInChina

> 检查某一天是不是中国大陆的假期，数据从2016年起开始提供

## 安装

```sh
npm install isHolidayInChina --save
```

## 使用指南

```js
var isHolidayInChina = require('isHolidayInChina');

isHolidayInChina(new Date('2016-10-01')); // true
```

## 数据来源

- 2016 - http://www.gov.cn/zhengce/content/2015-12/10/content_10394.htm
- 2017 - http://www.gov.cn/zhengce/content/2016-12/01/content_5141603.htm
- 2018 - http://www.gov.cn/xinwen/2017-11/30/content_5243589.htm
- 2019 - http://www.gov.cn/xinwen/2018-12/06/content_5346287.htm

## License

MIT © [anhulife](https://github.com/anhulife)
