UNPKG
calendario
Version:
latest (1.1.4)
1.1.4
1.1.3
1.1.0
1.0.0
Check if a day is a workday or holiday
github.com/raphamorim/calendario
raphamorim/calendario
calendario
/
calendars
/
BR
/
states
/
BR-PB.js
15 lines
(13 loc)
•
272 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var
state = [ {
date
:
new
Date
(
'2015-07-26 00:00:00'
),
workday
:
false
,
summary
:
"Homenagem à memória do ex-presidente João Pessoa"
}, {
date
:
new
Date
(
'2015-08-05 00:00:00'
),
workday
:
false
,
summary
:
"Fundação do Estado"
} ];
module
.
exports
= state;