forked from kodie/moment-holiday
-
Notifications
You must be signed in to change notification settings - Fork 0
/
india.js
40 lines (37 loc) · 978 Bytes
/
india.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! moment-holiday.js locale configuration
//! locale : India
//! author : wonder2991 : https://github.com/wonder2991
(function() {
var moment = (typeof require !== 'undefined' && require !== null) && !require.amd ? require('moment') : this.moment;
moment.holidays.india = {
"New Year's Day": {
date: '1/1',
keywords: ['naya', 'saal']
},
"Republic Day": {
date: '1/26',
keywords: ['ganatantr']
},
"Mahavir Jayanti": {
date: '4/9',
keywords: ['birthday']
},
"May Day": {
date: '5/1',
keywords: ['labour']
},
"Independence Day": {
date: '8/15',
keywords: ['svatantrata']
},
"Gandhi Jayanti": {
date: '10/02',
keywords: ['birthday']
},
"Christmas Day": {
date: '12/25',
keywords: ['christ']
}
};
if ((typeof module !== 'undefined' && module !== null ? module.exports : void 0) != null) { module.exports = moment; }
}).call(this);