forked from hebcal/hebcal-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.js
379 lines (345 loc) · 9.21 KB
/
common.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
/*
Hebcal - A Jewish Calendar Generator
Copyright (C) 1994-2004 Danny Sadinoff
Portions Copyright (c) 2002 Michael J. Radwin. All Rights Reserved.
https://github.com/hebcal/hebcal-js
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Danny Sadinoff can be reached at danny@sadinoff.com
Michael Radwin has made significant contributions as a result of
maintaining hebcal.com.
The JavaScript code was completely rewritten in 2014 by Eyal Schachter.
*/
var gematriya = require('gematriya');
var charCodeAt = 'charCodeAt';
var months = exports.months = {
NISAN : 1,
IYYAR : 2,
SIVAN : 3,
TAMUZ : 4,
AV : 5,
ELUL : 6,
TISHREI : 7,
CHESHVAN: 8,
KISLEV : 9,
TEVET : 10,
SHVAT : 11,
ADAR_I : 12,
ADAR_II : 13
};
var monthNames = [
["", 0, ""],
["Nisan", 0, "ניסן"],
["Iyyar", 0, "אייר"],
["Sivan", 0, "סיון"],
["Tamuz", 0, "תמוז"],
["Av", 0, "אב"],
["Elul", 0, "אלול"],
["Tishrei", 0, "תשרי"],
["Cheshvan", 0, "חשון"],
["Kislev", 0, "כסלו"],
["Tevet", 0, "טבת"],
["Sh'vat", 0, "שבט"]
];
exports.monthNames = [
monthNames.concat([["Adar", 0, "אדר"],["Nisan", 0, "ניסן"]]),
monthNames.concat([["Adar 1", 0, "אדר א'"],["Adar 2", 0, "אדר ב'"],["Nisan", 0, "ניסן"]])
];
exports.days = {
SUN: 0,
MON: 1,
TUE: 2,
WED: 3,
THU: 4,
FRI: 5,
SAT: 6
};
exports.LANG = function(str, opts){
return opts == 'h' && str[2] || (opts == 'a' && str[1] || str[0]);
};
function LEAP(x) {
return (1 + x * 7) % 19 < 7;
}
exports.LEAP = LEAP;
exports.MONTH_CNT = function(x) {
return 12 + LEAP(x); // boolean is cast to 1 or 0
};
exports.daysInMonth = function(month, year) {
return 30 - (month == months.IYYAR ||
month == months.TAMUZ ||
month == months.ELUL ||
month == months.TEVET ||
month == months.ADAR_II ||
(month == months.ADAR_I && !LEAP(year)) ||
(month == months.CHESHVAN && !lngChesh(year)) ||
(month == months.KISLEV && shrtKis(year)));
};
exports.monthNum = function(month) {
return typeof month === 'number' ? month :
month[charCodeAt](0) >= 1488 && month[charCodeAt](0) <= 1514 && /('|")/.test(month) ? gematriya(month) :
month[charCodeAt](0) >= 48 && month[charCodeAt](0) <= 57 /* number */ ? parseInt(month, 10) : monthFromName(month);
};
exports.dayYearNum = function(str) {
return typeof str === 'number' ? str :
str[charCodeAt](0) >= 1488 && str[charCodeAt](0) <= 1514 ? gematriya(str) : parseInt(str, 10);
};
/* Days from sunday prior to start of Hebrew calendar to mean
conjunction of Tishrei in Hebrew YEAR
*/
function hebElapsedDays(hYear){
// borrowed from original JS
var m_elapsed = 235 * Math.floor((hYear - 1) / 19) +
12 * ((hYear - 1) % 19) +
Math.floor(((((hYear - 1) % 19) * 7) + 1) / 19);
var p_elapsed = 204 + (793 * (m_elapsed % 1080));
var h_elapsed = 5 + (12 * m_elapsed) +
793 * Math.floor(m_elapsed / 1080) +
Math.floor(p_elapsed / 1080);
var parts = (p_elapsed % 1080) + 1080 * (h_elapsed % 24);
var day = 1 + 29 * m_elapsed + Math.floor(h_elapsed / 24);
var alt_day = day + ((parts >= 19440) ||
((2 == (day % 7)) && (parts >= 9924) && !(LEAP (hYear))) ||
((1 == (day % 7)) && (parts >= 16789) && LEAP (hYear - 1)));
return alt_day + ((alt_day % 7) === 0 ||
(alt_day % 7) == 3 ||
(alt_day % 7) == 5);
}
exports.hebElapsedDays = hebElapsedDays;
/* Number of days in the hebrew YEAR */
function daysInYear(year)
{
return hebElapsedDays(year + 1) - hebElapsedDays(year);
}
exports.daysInYear = daysInYear;
/* true if Cheshvan is long in Hebrew YEAR */
function lngChesh(year) {
return (daysInYear(year) % 10) == 5;
}
exports.lngChesh = lngChesh;
/* true if Kislev is short in Hebrew YEAR */
function shrtKis(year) {
return (daysInYear(year) % 10) == 3;
}
exports.shrtKis = shrtKis;
function monthFromName(c) {
/*
the Hebrew months are unique to their second letter
N Nisan (November?)
I Iyyar
E Elul
C Cheshvan
K Kislev
1 1Adar
2 2Adar
Si Sh Sivan, Shvat
Ta Ti Te Tamuz, Tishrei, Tevet
Av Ad Av, Adar
אב אד אי אל אב אדר אייר אלול
ח חשון
ט טבת
כ כסלב
נ ניסן
ס סיון
ש שבט
תמ תש תמוז תשרי
*/
switch (c.toLowerCase()[0]) {
case 'n':
case 'נ':
return (c.toLowerCase()[1] == 'o') ? /* this catches "november" */
0 : months.NISAN;
case 'i':
return months.IYYAR;
case 'e':
return months.ELUL;
case 'c':
case 'ח':
return months.CHESHVAN;
case 'k':
case 'כ':
return months.KISLEV;
case 's':
switch (c.toLowerCase()[1]) {
case 'i':
return months.SIVAN;
case 'h':
return months.SHVAT;
default:
return 0;
}
case 't':
switch (c.toLowerCase()[1]) {
case 'a':
return months.TAMUZ;
case 'i':
return months.TISHREI;
case 'e':
return months.TEVET;
}
break;
case 'a':
switch (c.toLowerCase()[1]) {
case 'v':
return months.AV;
case 'd':
if (/(1|[^i]i|a|א)$/i.test(c)) {
return months.ADAR_I;
}
return months.ADAR_II; // else assume sheini
}
break;
case 'ס':
return months.SIVAN;
case 'ש':
return months.SHVAT;
case 'א':
switch (c.toLowerCase()[1]) {
case 'ב':
return months.AV;
case 'ד':
if (/(2|ii|b|ב)$/i.test(c)) {
return months.ADAR_I;
}
return months.ADAR_II; // else assume sheini
case 'י':
return months.IYYAR;
case 'ל':
return months.ELUL;
}
break;
case 'ת':
switch (c.toLowerCase()[1]) {
case 'מ':
return months.TAMUZ;
case 'ש':
return months.TISHREI;
}
break;
}
return 0;
};
exports.monthFromName = monthFromName;
/* Note: Applying this function to d+6 gives us the DAYNAME on or after an
* absolute day d. Similarly, applying it to d+3 gives the DAYNAME nearest to
* absolute date d, applying it to d-1 gives the DAYNAME previous to absolute
* date d, and applying it to d+7 gives the DAYNAME following absolute date d.
**/
exports.dayOnOrBefore = function(day_of_week, absdate) {
return absdate - ((absdate - day_of_week) % 7);
};
exports.map = function(self, fun, thisp) {
// originally written for http://github.com/Scimonster/localbrowse
if (self === null || typeof fun != 'function') {
throw new TypeError();
}
var t = Object(self);
var res = {};
for (var i in t) {
if (t.hasOwnProperty(i)) {
res[i] = fun.call(thisp, t[i], i, t);
}
}
if (Array.isArray(self) || typeof self == 'string') { // came as an array, return an array
var arr = [];
for (i in res) {
arr[Number(i)] = res[i];
}
res = filter(arr, true); // for...in isn't guaranteed to give any meaningful order
if (typeof self == 'string') {
res = res.join('');
}
}
return res;
};
function filter(self, fun, thisp) {
if (self === null) {
throw new TypeError('self is null');
}
switch (typeof fun) {
case 'function':
break; // do nothing
case 'string':
case 'number':
return self[fun]; // str/num is just the property
case 'boolean':
// boolean shortcuts to filter only truthy/falsy values
if (fun) {
fun = function (v) {
return v;
};
} else {
fun = function (v) {
return !v;
};
}
break;
case 'object':
var funOrig = fun; // save it
if (fun instanceof RegExp) { // test the val against the regex
fun = function (v) {
return funOrig.test(v);
};
break;
} else if (Array.isArray(fun)) { // keep these keys
fun = function (v, k) {
return funOrig.indexOf(k) > -1;
};
break;
}
default:
throw new TypeError('fun is not a supported type');
}
var res = {};
var t = Object(self);
for (var i in t) {
if (t.hasOwnProperty(i)) {
var val = t[i]; // in case fun mutates it
if (fun.call(thisp, val, i, t)) {
// define property on res in the same manner as it was originally defined
var props = Object.getOwnPropertyDescriptor(t, i);
props.value = val;
Object.defineProperty(res, i, props);
}
}
}
if (Array.isArray(self) || typeof self == 'string') { // came as an array, return an array
var arr = [];
for (i in res) {
arr[Number(i)] = res[i];
}
res = arr.filter(function (v) {
return v;
}); // for...in isn't guaranteed to give any meaningful order
// can't use c.filter(arr,true) here because that would infitely recurse
if (typeof self == 'string') {
res = res.join('');
}
}
return res;
}
exports.filter = filter;
exports.range = function(start, end, step) {
step = step || 1;
if (step < 0) {
step = 0 - step;
}
var arr = [], i = start;
if (start < end) {
for (; i <= end; i += step) {
arr.push(i);
}
} else {
for (; i >= end; i -= step) {
arr.push(i);
}
}
return arr;
};