@hebcal/core 3.32.0 → 3.33.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +118 -5
- package/dist/bundle.js +430 -121
- package/dist/bundle.min.js +2 -2
- package/dist/hdate-bundle.js +2 -2
- package/dist/hdate-bundle.min.js +2 -2
- package/dist/hdate.js +2 -2
- package/dist/hdate.mjs +2 -2
- package/dist/index.js +337 -145
- package/dist/index.mjs +335 -145
- package/hebcal.d.ts +81 -0
- package/package.json +9 -9
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @hebcal/core v3.
|
|
1
|
+
/*! @hebcal/core v3.33.2 */
|
|
2
2
|
/*
|
|
3
3
|
Hebcal - A Jewish Calendar Generator
|
|
4
4
|
Copyright (c) 1994-2020 Danny Sadinoff
|
|
@@ -617,7 +617,7 @@ const monthNames0 = ['', 'Nisan', 'Iyyar', 'Sivan', 'Tamuz', 'Av', 'Elul', 'Tish
|
|
|
617
617
|
|
|
618
618
|
const monthNames = [monthNames0.concat(['Adar', 'Nisan']), monthNames0.concat(['Adar I', 'Adar II', 'Nisan'])]; // eslint-disable-next-line require-jsdoc
|
|
619
619
|
|
|
620
|
-
function throwTypeError$
|
|
620
|
+
function throwTypeError$3(msg) {
|
|
621
621
|
throw new TypeError(msg);
|
|
622
622
|
}
|
|
623
623
|
|
|
@@ -652,7 +652,7 @@ const UNITS_VALID = {
|
|
|
652
652
|
|
|
653
653
|
/** Represents a Hebrew date */
|
|
654
654
|
|
|
655
|
-
class HDate
|
|
655
|
+
class HDate {
|
|
656
656
|
/**
|
|
657
657
|
* Create a Hebrew date. There are 3 basic forms for the `HDate()` constructor.
|
|
658
658
|
*
|
|
@@ -721,13 +721,13 @@ class HDate$1 {
|
|
|
721
721
|
} // 1 argument
|
|
722
722
|
|
|
723
723
|
|
|
724
|
-
const abs0 = typeof day === 'number' && !isNaN(day) ? day : greg.isDate(day) ? greg.greg2abs(day) : HDate
|
|
724
|
+
const abs0 = typeof day === 'number' && !isNaN(day) ? day : greg.isDate(day) ? greg.greg2abs(day) : HDate.isHDate(day) ? {
|
|
725
725
|
dd: day.day,
|
|
726
726
|
mm: day.month,
|
|
727
727
|
yy: day.year
|
|
728
|
-
} : throwTypeError$
|
|
728
|
+
} : throwTypeError$3(`HDate called with bad argument: ${day}`);
|
|
729
729
|
const isNumber = typeof abs0 === 'number';
|
|
730
|
-
const d = isNumber ? HDate
|
|
730
|
+
const d = isNumber ? HDate.abs2hebrew(abs0) : abs0;
|
|
731
731
|
/**
|
|
732
732
|
* @private
|
|
733
733
|
* @type {number}
|
|
@@ -772,7 +772,7 @@ class HDate$1 {
|
|
|
772
772
|
|
|
773
773
|
|
|
774
774
|
isLeapYear() {
|
|
775
|
-
return HDate
|
|
775
|
+
return HDate.isLeapYear(this.year);
|
|
776
776
|
}
|
|
777
777
|
/**
|
|
778
778
|
* Gets the Hebrew month (1=NISAN, 7=TISHREI) of this Hebrew date
|
|
@@ -790,7 +790,7 @@ class HDate$1 {
|
|
|
790
790
|
|
|
791
791
|
|
|
792
792
|
getTishreiMonth() {
|
|
793
|
-
const nummonths = HDate
|
|
793
|
+
const nummonths = HDate.monthsInYear(this.getFullYear());
|
|
794
794
|
return (this.getMonth() + nummonths - 6) % nummonths || nummonths;
|
|
795
795
|
}
|
|
796
796
|
/**
|
|
@@ -800,7 +800,7 @@ class HDate$1 {
|
|
|
800
800
|
|
|
801
801
|
|
|
802
802
|
daysInMonth() {
|
|
803
|
-
return HDate
|
|
803
|
+
return HDate.daysInMonth(this.getMonth(), this.getFullYear());
|
|
804
804
|
}
|
|
805
805
|
/**
|
|
806
806
|
* Gets the day within the month (1-30)
|
|
@@ -843,7 +843,7 @@ class HDate$1 {
|
|
|
843
843
|
|
|
844
844
|
|
|
845
845
|
setMonth(month) {
|
|
846
|
-
this.month = HDate
|
|
846
|
+
this.month = HDate.monthNum(month);
|
|
847
847
|
fix(this);
|
|
848
848
|
return this;
|
|
849
849
|
}
|
|
@@ -879,7 +879,7 @@ class HDate$1 {
|
|
|
879
879
|
|
|
880
880
|
abs() {
|
|
881
881
|
if (typeof this.abs0 !== 'number') {
|
|
882
|
-
this.abs0 = HDate
|
|
882
|
+
this.abs0 = HDate.hebrew2abs(this.year, this.month, this.day);
|
|
883
883
|
}
|
|
884
884
|
|
|
885
885
|
return this.abs0;
|
|
@@ -899,20 +899,20 @@ class HDate$1 {
|
|
|
899
899
|
let tempabs = day;
|
|
900
900
|
|
|
901
901
|
if (month < TISHREI$2) {
|
|
902
|
-
for (let m = TISHREI$2; m <= HDate
|
|
903
|
-
tempabs += HDate
|
|
902
|
+
for (let m = TISHREI$2; m <= HDate.monthsInYear(year); m++) {
|
|
903
|
+
tempabs += HDate.daysInMonth(m, year);
|
|
904
904
|
}
|
|
905
905
|
|
|
906
906
|
for (let m = NISAN$2; m < month; m++) {
|
|
907
|
-
tempabs += HDate
|
|
907
|
+
tempabs += HDate.daysInMonth(m, year);
|
|
908
908
|
}
|
|
909
909
|
} else {
|
|
910
910
|
for (let m = TISHREI$2; m < month; m++) {
|
|
911
|
-
tempabs += HDate
|
|
911
|
+
tempabs += HDate.daysInMonth(m, year);
|
|
912
912
|
}
|
|
913
913
|
}
|
|
914
914
|
|
|
915
|
-
return EPOCH + HDate
|
|
915
|
+
return EPOCH + HDate.elapsedDays(year) + tempabs - 1;
|
|
916
916
|
}
|
|
917
917
|
/**
|
|
918
918
|
* @private
|
|
@@ -922,7 +922,7 @@ class HDate$1 {
|
|
|
922
922
|
|
|
923
923
|
|
|
924
924
|
static newYear(year) {
|
|
925
|
-
return EPOCH + HDate
|
|
925
|
+
return EPOCH + HDate.elapsedDays(year) + HDate.newYearDelay(year);
|
|
926
926
|
}
|
|
927
927
|
/**
|
|
928
928
|
* @private
|
|
@@ -932,13 +932,13 @@ class HDate$1 {
|
|
|
932
932
|
|
|
933
933
|
|
|
934
934
|
static newYearDelay(year) {
|
|
935
|
-
const ny1 = HDate
|
|
936
|
-
const ny2 = HDate
|
|
935
|
+
const ny1 = HDate.elapsedDays(year);
|
|
936
|
+
const ny2 = HDate.elapsedDays(year + 1);
|
|
937
937
|
|
|
938
938
|
if (ny2 - ny1 === 356) {
|
|
939
939
|
return 2;
|
|
940
940
|
} else {
|
|
941
|
-
const ny0 = HDate
|
|
941
|
+
const ny0 = HDate.elapsedDays(year - 1);
|
|
942
942
|
return ny1 - ny0 === 382 ? 1 : 0;
|
|
943
943
|
}
|
|
944
944
|
}
|
|
@@ -959,18 +959,18 @@ class HDate$1 {
|
|
|
959
959
|
|
|
960
960
|
let year = Math.floor((abs - EPOCH) / AVG_HEBYEAR_DAYS);
|
|
961
961
|
|
|
962
|
-
while (HDate
|
|
962
|
+
while (HDate.newYear(year) <= abs) {
|
|
963
963
|
++year;
|
|
964
964
|
}
|
|
965
965
|
|
|
966
966
|
--year;
|
|
967
|
-
let month = abs < HDate
|
|
967
|
+
let month = abs < HDate.hebrew2abs(year, 1, 1) ? 7 : 1;
|
|
968
968
|
|
|
969
|
-
while (abs > HDate
|
|
969
|
+
while (abs > HDate.hebrew2abs(year, month, HDate.daysInMonth(month, year))) {
|
|
970
970
|
++month;
|
|
971
971
|
}
|
|
972
972
|
|
|
973
|
-
const day = 1 + abs - HDate
|
|
973
|
+
const day = 1 + abs - HDate.hebrew2abs(year, month, 1);
|
|
974
974
|
return {
|
|
975
975
|
yy: year,
|
|
976
976
|
mm: month,
|
|
@@ -984,7 +984,7 @@ class HDate$1 {
|
|
|
984
984
|
|
|
985
985
|
|
|
986
986
|
getMonthName() {
|
|
987
|
-
return HDate
|
|
987
|
+
return HDate.getMonthName(this.getMonth(), this.getFullYear());
|
|
988
988
|
}
|
|
989
989
|
/**
|
|
990
990
|
* Renders this Hebrew date as a translated or transliterated string,
|
|
@@ -1006,7 +1006,7 @@ class HDate$1 {
|
|
|
1006
1006
|
const day = this.getDate();
|
|
1007
1007
|
const monthName = Locale.gettext(this.getMonthName(), locale0);
|
|
1008
1008
|
const nth = Locale.ordinal(day, locale0);
|
|
1009
|
-
const dayOf = HDate
|
|
1009
|
+
const dayOf = HDate.getDayOfTranslation(locale0);
|
|
1010
1010
|
const dateStr = `${nth}${dayOf} ${monthName}`;
|
|
1011
1011
|
|
|
1012
1012
|
if (showYear) {
|
|
@@ -1139,7 +1139,7 @@ class HDate$1 {
|
|
|
1139
1139
|
|
|
1140
1140
|
|
|
1141
1141
|
next() {
|
|
1142
|
-
return new HDate
|
|
1142
|
+
return new HDate(this.abs() + 1);
|
|
1143
1143
|
}
|
|
1144
1144
|
/**
|
|
1145
1145
|
* Returns the previous Hebrew date
|
|
@@ -1148,7 +1148,7 @@ class HDate$1 {
|
|
|
1148
1148
|
|
|
1149
1149
|
|
|
1150
1150
|
prev() {
|
|
1151
|
-
return new HDate
|
|
1151
|
+
return new HDate(this.abs() - 1);
|
|
1152
1152
|
}
|
|
1153
1153
|
/**
|
|
1154
1154
|
* Returns a cloned `HDate` object with a specified amount of time added
|
|
@@ -1172,24 +1172,24 @@ class HDate$1 {
|
|
|
1172
1172
|
number = parseInt(number, 10);
|
|
1173
1173
|
|
|
1174
1174
|
if (!number) {
|
|
1175
|
-
return new HDate
|
|
1175
|
+
return new HDate(this);
|
|
1176
1176
|
}
|
|
1177
1177
|
|
|
1178
|
-
units = HDate
|
|
1178
|
+
units = HDate.standardizeUnits(units);
|
|
1179
1179
|
|
|
1180
1180
|
if (units === UNITS_DAY) {
|
|
1181
|
-
return new HDate
|
|
1181
|
+
return new HDate(this.abs() + number);
|
|
1182
1182
|
} else if (units === UNITS_WEEK) {
|
|
1183
|
-
return new HDate
|
|
1183
|
+
return new HDate(this.abs() + 7 * number);
|
|
1184
1184
|
} else if (units === UNITS_YEAR) {
|
|
1185
|
-
return new HDate
|
|
1185
|
+
return new HDate(this.getDate(), this.getMonth(), this.getFullYear() + number);
|
|
1186
1186
|
} else if (units === UNITS_MONTH) {
|
|
1187
|
-
let hd = new HDate
|
|
1187
|
+
let hd = new HDate(this);
|
|
1188
1188
|
const sign = number > 0 ? 1 : -1;
|
|
1189
1189
|
number = Math.abs(number);
|
|
1190
1190
|
|
|
1191
1191
|
for (let i = 0; i < number; i++) {
|
|
1192
|
-
hd = new HDate
|
|
1192
|
+
hd = new HDate(hd.abs() + sign * hd.daysInMonth());
|
|
1193
1193
|
}
|
|
1194
1194
|
|
|
1195
1195
|
return hd;
|
|
@@ -1204,7 +1204,7 @@ class HDate$1 {
|
|
|
1204
1204
|
|
|
1205
1205
|
static standardizeUnits(units) {
|
|
1206
1206
|
const full = UNITS_SINGLE[units] || String(units || '').toLowerCase().replace(/s$/, '');
|
|
1207
|
-
return UNITS_VALID[full] || throwTypeError$
|
|
1207
|
+
return UNITS_VALID[full] || throwTypeError$3(`Invalid units '${units}'`);
|
|
1208
1208
|
}
|
|
1209
1209
|
/**
|
|
1210
1210
|
* Returns a cloned `HDate` object with a specified amount of time subracted
|
|
@@ -1253,7 +1253,7 @@ class HDate$1 {
|
|
|
1253
1253
|
|
|
1254
1254
|
|
|
1255
1255
|
deltaDays(other) {
|
|
1256
|
-
if (!HDate
|
|
1256
|
+
if (!HDate.isHDate(other)) {
|
|
1257
1257
|
throw new TypeError(`Bad argument: ${other}`);
|
|
1258
1258
|
}
|
|
1259
1259
|
|
|
@@ -1267,7 +1267,7 @@ class HDate$1 {
|
|
|
1267
1267
|
|
|
1268
1268
|
|
|
1269
1269
|
isSameDate(other) {
|
|
1270
|
-
if (HDate
|
|
1270
|
+
if (HDate.isHDate(other)) {
|
|
1271
1271
|
return this.year == other.year && this.month == other.month && this.day == other.day;
|
|
1272
1272
|
}
|
|
1273
1273
|
|
|
@@ -1300,7 +1300,7 @@ class HDate$1 {
|
|
|
1300
1300
|
|
|
1301
1301
|
|
|
1302
1302
|
static monthsInYear(year) {
|
|
1303
|
-
return 12 + HDate
|
|
1303
|
+
return 12 + HDate.isLeapYear(year); // boolean is cast to 1 or 0
|
|
1304
1304
|
}
|
|
1305
1305
|
/**
|
|
1306
1306
|
* Number of days in Hebrew month in a given year (29 or 30)
|
|
@@ -1311,7 +1311,7 @@ class HDate$1 {
|
|
|
1311
1311
|
|
|
1312
1312
|
|
|
1313
1313
|
static daysInMonth(month, year) {
|
|
1314
|
-
if (month == IYYAR$1 || month == TAMUZ$1 || month == ELUL$2 || month == TEVET$2 || month == ADAR_II$2 || month == ADAR_I$2 && !HDate
|
|
1314
|
+
if (month == IYYAR$1 || month == TAMUZ$1 || month == ELUL$2 || month == TEVET$2 || month == ADAR_II$2 || month == ADAR_I$2 && !HDate.isLeapYear(year) || month == CHESHVAN$2 && !HDate.longCheshvan(year) || month == KISLEV$2 && HDate.shortKislev(year)) {
|
|
1315
1315
|
return 29;
|
|
1316
1316
|
} else {
|
|
1317
1317
|
return 30;
|
|
@@ -1331,7 +1331,7 @@ class HDate$1 {
|
|
|
1331
1331
|
throw new TypeError(`bad month argument ${month}`);
|
|
1332
1332
|
}
|
|
1333
1333
|
|
|
1334
|
-
return monthNames[+HDate
|
|
1334
|
+
return monthNames[+HDate.isLeapYear(year)][month];
|
|
1335
1335
|
}
|
|
1336
1336
|
/**
|
|
1337
1337
|
* Returns the Hebrew month number (NISAN=1, TISHREI=7)
|
|
@@ -1343,7 +1343,7 @@ class HDate$1 {
|
|
|
1343
1343
|
static monthNum(month) {
|
|
1344
1344
|
return typeof month === 'number' ? month : month.charCodeAt(0) >= 48 && month.charCodeAt(0) <= 57 ?
|
|
1345
1345
|
/* number */
|
|
1346
|
-
parseInt(month, 10) : HDate
|
|
1346
|
+
parseInt(month, 10) : HDate.monthFromName(month);
|
|
1347
1347
|
}
|
|
1348
1348
|
/**
|
|
1349
1349
|
* Days from sunday prior to start of Hebrew calendar to mean
|
|
@@ -1354,7 +1354,7 @@ class HDate$1 {
|
|
|
1354
1354
|
|
|
1355
1355
|
|
|
1356
1356
|
static elapsedDays(year) {
|
|
1357
|
-
const elapsed = edCache[year] = edCache[year] || HDate
|
|
1357
|
+
const elapsed = edCache[year] = edCache[year] || HDate.elapsedDays0(year);
|
|
1358
1358
|
return elapsed;
|
|
1359
1359
|
}
|
|
1360
1360
|
/**
|
|
@@ -1376,7 +1376,7 @@ class HDate$1 {
|
|
|
1376
1376
|
const hElapsed = 5 + 12 * mElapsed + 793 * Math.floor(mElapsed / 1080) + Math.floor(pElapsed / 1080);
|
|
1377
1377
|
const parts = pElapsed % 1080 + 1080 * (hElapsed % 24);
|
|
1378
1378
|
const day = 1 + 29 * mElapsed + Math.floor(hElapsed / 24);
|
|
1379
|
-
const altDay = day + (parts >= 19440 || 2 == day % 7 && parts >= 9924 && !HDate
|
|
1379
|
+
const altDay = day + (parts >= 19440 || 2 == day % 7 && parts >= 9924 && !HDate.isLeapYear(year) || 1 == day % 7 && parts >= 16789 && HDate.isLeapYear(prevYear));
|
|
1380
1380
|
return altDay + (altDay % 7 === 0 || altDay % 7 == 3 || altDay % 7 == 5);
|
|
1381
1381
|
}
|
|
1382
1382
|
/**
|
|
@@ -1387,7 +1387,7 @@ class HDate$1 {
|
|
|
1387
1387
|
|
|
1388
1388
|
|
|
1389
1389
|
static daysInYear(year) {
|
|
1390
|
-
return HDate
|
|
1390
|
+
return HDate.elapsedDays(year + 1) - HDate.elapsedDays(year);
|
|
1391
1391
|
}
|
|
1392
1392
|
/**
|
|
1393
1393
|
* true if Cheshvan is long in Hebrew year
|
|
@@ -1397,7 +1397,7 @@ class HDate$1 {
|
|
|
1397
1397
|
|
|
1398
1398
|
|
|
1399
1399
|
static longCheshvan(year) {
|
|
1400
|
-
return HDate
|
|
1400
|
+
return HDate.daysInYear(year) % 10 == 5;
|
|
1401
1401
|
}
|
|
1402
1402
|
/**
|
|
1403
1403
|
* true if Kislev is short in Hebrew year
|
|
@@ -1407,7 +1407,7 @@ class HDate$1 {
|
|
|
1407
1407
|
|
|
1408
1408
|
|
|
1409
1409
|
static shortKislev(year) {
|
|
1410
|
-
return HDate
|
|
1410
|
+
return HDate.daysInYear(year) % 10 == 3;
|
|
1411
1411
|
}
|
|
1412
1412
|
/**
|
|
1413
1413
|
* Converts Hebrew month string name to numeric
|
|
@@ -1596,17 +1596,17 @@ function fixDate(date) {
|
|
|
1596
1596
|
date.year -= 1;
|
|
1597
1597
|
}
|
|
1598
1598
|
|
|
1599
|
-
date.day += HDate
|
|
1599
|
+
date.day += HDate.daysInMonth(date.month, date.year);
|
|
1600
1600
|
date.month -= 1;
|
|
1601
1601
|
fix(date);
|
|
1602
1602
|
}
|
|
1603
1603
|
|
|
1604
|
-
if (date.day > HDate
|
|
1604
|
+
if (date.day > HDate.daysInMonth(date.month, date.year)) {
|
|
1605
1605
|
if (date.month == ELUL$2) {
|
|
1606
1606
|
date.year += 1;
|
|
1607
1607
|
}
|
|
1608
1608
|
|
|
1609
|
-
date.day -= HDate
|
|
1609
|
+
date.day -= HDate.daysInMonth(date.month, date.year);
|
|
1610
1610
|
date.month += 1;
|
|
1611
1611
|
fix(date);
|
|
1612
1612
|
}
|
|
@@ -1625,11 +1625,11 @@ function fixMonth(date) {
|
|
|
1625
1625
|
|
|
1626
1626
|
fix(date);
|
|
1627
1627
|
} else if (date.month < 1) {
|
|
1628
|
-
date.month += HDate
|
|
1628
|
+
date.month += HDate.monthsInYear(date.year);
|
|
1629
1629
|
date.year -= 1;
|
|
1630
1630
|
fix(date);
|
|
1631
|
-
} else if (date.month > HDate
|
|
1632
|
-
date.month -= HDate
|
|
1631
|
+
} else if (date.month > HDate.monthsInYear(date.year)) {
|
|
1632
|
+
date.month -= HDate.monthsInYear(date.year);
|
|
1633
1633
|
date.year += 1;
|
|
1634
1634
|
fix(date);
|
|
1635
1635
|
}
|
|
@@ -1646,7 +1646,7 @@ function fixMonth(date) {
|
|
|
1646
1646
|
|
|
1647
1647
|
|
|
1648
1648
|
function onOrBefore(day, t, offset) {
|
|
1649
|
-
return new HDate
|
|
1649
|
+
return new HDate(HDate.dayOnOrBefore(day, t.abs() + offset));
|
|
1650
1650
|
}
|
|
1651
1651
|
|
|
1652
1652
|
const CHAG$1 = 0x000001;
|
|
@@ -1673,6 +1673,7 @@ const HEBREW_DATE = 0x040000;
|
|
|
1673
1673
|
const MINOR_HOLIDAY$2 = 0x080000;
|
|
1674
1674
|
const EREV$2 = 0x100000;
|
|
1675
1675
|
const CHOL_HAMOED$2 = 0x200000;
|
|
1676
|
+
const MISHNA_YOMI = 0x400000;
|
|
1676
1677
|
/**
|
|
1677
1678
|
* Holiday flags for Event
|
|
1678
1679
|
* @readonly
|
|
@@ -1744,7 +1745,10 @@ const flags = {
|
|
|
1744
1745
|
EREV: EREV$2,
|
|
1745
1746
|
|
|
1746
1747
|
/** Chol haMoed, intermediate days of Pesach or Sukkot */
|
|
1747
|
-
CHOL_HAMOED: CHOL_HAMOED$2
|
|
1748
|
+
CHOL_HAMOED: CHOL_HAMOED$2,
|
|
1749
|
+
|
|
1750
|
+
/** Mishna Yomi */
|
|
1751
|
+
MISHNA_YOMI
|
|
1748
1752
|
};
|
|
1749
1753
|
/** Represents an Event with a title, date, and flags */
|
|
1750
1754
|
|
|
@@ -2296,7 +2300,7 @@ function pad4(number) {
|
|
|
2296
2300
|
return String(number);
|
|
2297
2301
|
}
|
|
2298
2302
|
|
|
2299
|
-
function throwTypeError$
|
|
2303
|
+
function throwTypeError$2(error) {
|
|
2300
2304
|
throw new TypeError(error);
|
|
2301
2305
|
}
|
|
2302
2306
|
/**
|
|
@@ -2357,7 +2361,7 @@ class Zmanim {
|
|
|
2357
2361
|
throw new RangeError(`Longitude ${longitude} out of range [-180,180]`);
|
|
2358
2362
|
}
|
|
2359
2363
|
|
|
2360
|
-
const dt = greg.isDate(date) ? date : HDate
|
|
2364
|
+
const dt = greg.isDate(date) ? date : HDate.isHDate(date) ? date.greg() : throwTypeError$2(`invalid date: ${date}`);
|
|
2361
2365
|
this.date = dt;
|
|
2362
2366
|
this.sun = new Sun_1(this.date, latitude, longitude);
|
|
2363
2367
|
this.latitude = latitude;
|
|
@@ -3022,6 +3026,7 @@ const days = {
|
|
|
3022
3026
|
};
|
|
3023
3027
|
/**
|
|
3024
3028
|
* @private
|
|
3029
|
+
* @constant
|
|
3025
3030
|
* This method returns the tzais (nightfall) based on the opinion of the
|
|
3026
3031
|
* Geonim calculated as 30 minutes after sunset during the equinox
|
|
3027
3032
|
* (on March 16, about 4 days before the astronomical equinox, the day that
|
|
@@ -3277,7 +3282,7 @@ class Molad {
|
|
|
3277
3282
|
let m_adj = month - 7;
|
|
3278
3283
|
|
|
3279
3284
|
if (m_adj < 0) {
|
|
3280
|
-
m_adj += HDate
|
|
3285
|
+
m_adj += HDate.monthsInYear(year);
|
|
3281
3286
|
}
|
|
3282
3287
|
|
|
3283
3288
|
const m_elapsed = 235 * Math.floor((year - 1) / 19) + // Months in complete 19 year lunar (Metonic) cycles so far
|
|
@@ -3320,7 +3325,7 @@ class Molad {
|
|
|
3320
3325
|
|
|
3321
3326
|
|
|
3322
3327
|
getMonthName() {
|
|
3323
|
-
return HDate
|
|
3328
|
+
return HDate.getMonthName(this.month, this.year);
|
|
3324
3329
|
}
|
|
3325
3330
|
/**
|
|
3326
3331
|
* @return {number} Day of Week (0=Sunday, 6=Saturday)
|
|
@@ -3501,18 +3506,23 @@ const shas = [['Berachot', 64], ['Shabbat', 157], ['Eruvin', 105], ['Pesachim',
|
|
|
3501
3506
|
name: m[0],
|
|
3502
3507
|
blatt: m[1]
|
|
3503
3508
|
};
|
|
3504
|
-
});
|
|
3509
|
+
}); // eslint-disable-next-line require-jsdoc
|
|
3510
|
+
|
|
3511
|
+
function throwTypeError$1(msg) {
|
|
3512
|
+
throw new TypeError(msg);
|
|
3513
|
+
}
|
|
3505
3514
|
/**
|
|
3506
3515
|
* Returns the Daf Yomi for given date
|
|
3507
3516
|
*/
|
|
3508
3517
|
|
|
3518
|
+
|
|
3509
3519
|
class DafYomi {
|
|
3510
3520
|
/**
|
|
3511
3521
|
* Initializes a daf yomi instance
|
|
3512
|
-
* @param {Date} gregdate Gregorian date
|
|
3522
|
+
* @param {Date|HDate|number} gregdate Gregorian date
|
|
3513
3523
|
*/
|
|
3514
3524
|
constructor(gregdate) {
|
|
3515
|
-
const cday = typeof gregdate === 'number' && !isNaN(gregdate) ? gregdate : greg.isDate(gregdate) ? greg.greg2abs(gregdate) : HDate.isHDate(gregdate) ? gregdate.abs() : throwTypeError(`non-date given to dafyomi: ${gregdate}`);
|
|
3525
|
+
const cday = typeof gregdate === 'number' && !isNaN(gregdate) ? gregdate : greg.isDate(gregdate) ? greg.greg2abs(gregdate) : HDate.isHDate(gregdate) ? gregdate.abs() : throwTypeError$1(`non-date given to dafyomi: ${gregdate}`);
|
|
3516
3526
|
|
|
3517
3527
|
if (cday < osday) {
|
|
3518
3528
|
throw new RangeError(`Date ${gregdate} too early; Daf Yomi cycle began on ${osdate}`);
|
|
@@ -3704,16 +3714,16 @@ class Sedra {
|
|
|
3704
3714
|
constructor(hebYr, il) {
|
|
3705
3715
|
// the Hebrew year
|
|
3706
3716
|
hebYr = +hebYr;
|
|
3707
|
-
const longC = HDate
|
|
3708
|
-
const shortK = HDate
|
|
3717
|
+
const longC = HDate.longCheshvan(hebYr);
|
|
3718
|
+
const shortK = HDate.shortKislev(hebYr);
|
|
3709
3719
|
const type = this.type = longC && !shortK ? COMPLETE : !longC && shortK ? INCOMPLETE : REGULAR;
|
|
3710
3720
|
this.year = hebYr;
|
|
3711
|
-
const rh0 = new HDate
|
|
3721
|
+
const rh0 = new HDate(1, months.TISHREI, hebYr);
|
|
3712
3722
|
const rh = rh0.abs();
|
|
3713
3723
|
const rhDay = this.roshHashanaDay = rh0.getDay() + 1; // find the first Saturday on or after Rosh Hashana
|
|
3714
3724
|
|
|
3715
|
-
this.firstSaturday = HDate
|
|
3716
|
-
const leap = this.leap = +HDate
|
|
3725
|
+
this.firstSaturday = HDate.dayOnOrBefore(6, rh + 6);
|
|
3726
|
+
const leap = this.leap = +HDate.isLeapYear(hebYr);
|
|
3717
3727
|
this.il = Boolean(il);
|
|
3718
3728
|
const key = `${leap}${rhDay}${type}`;
|
|
3719
3729
|
|
|
@@ -3790,7 +3800,7 @@ class Sedra {
|
|
|
3790
3800
|
return null; // doesn't occur this year
|
|
3791
3801
|
}
|
|
3792
3802
|
|
|
3793
|
-
return new HDate
|
|
3803
|
+
return new HDate(this.firstSaturday + idx * 7);
|
|
3794
3804
|
} else if (typeof parsha === 'string') {
|
|
3795
3805
|
const num = parsha2id[parsha];
|
|
3796
3806
|
|
|
@@ -3806,7 +3816,7 @@ class Sedra {
|
|
|
3806
3816
|
return null; // doesn't occur this year
|
|
3807
3817
|
}
|
|
3808
3818
|
|
|
3809
|
-
return new HDate
|
|
3819
|
+
return new HDate(this.firstSaturday + idx * 7);
|
|
3810
3820
|
}
|
|
3811
3821
|
} else if (Array.isArray(parsha) && parsha.length === 1 && typeof parsha[0] === 'string') {
|
|
3812
3822
|
return this.find(parsha[0]);
|
|
@@ -3857,9 +3867,9 @@ class Sedra {
|
|
|
3857
3867
|
|
|
3858
3868
|
|
|
3859
3869
|
lookup(hDate) {
|
|
3860
|
-
const absDate = typeof hDate === 'number' ? hDate : HDate
|
|
3870
|
+
const absDate = typeof hDate === 'number' ? hDate : HDate.isHDate(hDate) ? hDate.abs() : throwError(`Bad date argument: ${hDate}`); // find the first saturday on or after today's date
|
|
3861
3871
|
|
|
3862
|
-
const saturday = HDate
|
|
3872
|
+
const saturday = HDate.dayOnOrBefore(6, absDate + 6);
|
|
3863
3873
|
const weekNum = (saturday - this.firstSaturday) / 7;
|
|
3864
3874
|
const index = this.theSedraArray[weekNum];
|
|
3865
3875
|
|
|
@@ -4315,7 +4325,7 @@ class MevarchimChodeshEvent extends Event {
|
|
|
4315
4325
|
this.monthName = monthName;
|
|
4316
4326
|
const hyear = date.getFullYear();
|
|
4317
4327
|
const hmonth = date.getMonth();
|
|
4318
|
-
const monNext = hmonth == HDate
|
|
4328
|
+
const monNext = hmonth == HDate.monthsInYear(hyear) ? months.NISAN : hmonth + 1;
|
|
4319
4329
|
const molad = new MoladEvent(date, hyear, monNext);
|
|
4320
4330
|
this.memo = molad.render();
|
|
4321
4331
|
}
|
|
@@ -4331,9 +4341,7 @@ class MevarchimChodeshEvent extends Event {
|
|
|
4331
4341
|
}
|
|
4332
4342
|
|
|
4333
4343
|
}
|
|
4334
|
-
/**
|
|
4335
|
-
* @private
|
|
4336
|
-
*/
|
|
4344
|
+
/** Represents Rosh Hashana, the Jewish New Year */
|
|
4337
4345
|
|
|
4338
4346
|
class RoshHashanaEvent extends HolidayEvent {
|
|
4339
4347
|
/**
|
|
@@ -4394,7 +4402,10 @@ const MAJOR_FAST$1 = flags.MAJOR_FAST;
|
|
|
4394
4402
|
const MINOR_HOLIDAY$1 = flags.MINOR_HOLIDAY;
|
|
4395
4403
|
const EREV$1 = flags.EREV;
|
|
4396
4404
|
const CHOL_HAMOED$1 = flags.CHOL_HAMOED;
|
|
4397
|
-
/**
|
|
4405
|
+
/**
|
|
4406
|
+
* Avoid dependency on ES6 Map object
|
|
4407
|
+
* @private
|
|
4408
|
+
*/
|
|
4398
4409
|
|
|
4399
4410
|
class SimpleMap {
|
|
4400
4411
|
/**
|
|
@@ -4479,8 +4490,8 @@ function getHolidaysForYear(year) {
|
|
|
4479
4490
|
return cached;
|
|
4480
4491
|
}
|
|
4481
4492
|
|
|
4482
|
-
const RH = new HDate
|
|
4483
|
-
const pesach = new HDate
|
|
4493
|
+
const RH = new HDate(1, TISHREI$1, year);
|
|
4494
|
+
const pesach = new HDate(15, NISAN$1, year);
|
|
4484
4495
|
const h = new SimpleMap(); // eslint-disable-next-line require-jsdoc
|
|
4485
4496
|
|
|
4486
4497
|
function add(...events) {
|
|
@@ -4504,7 +4515,7 @@ function getHolidaysForYear(year) {
|
|
|
4504
4515
|
|
|
4505
4516
|
function addEvents(year, arr) {
|
|
4506
4517
|
arr.forEach(a => {
|
|
4507
|
-
add(new HolidayEvent(new HDate
|
|
4518
|
+
add(new HolidayEvent(new HDate(a[0], a[1], year), a[2], a[3], a[4]));
|
|
4508
4519
|
});
|
|
4509
4520
|
} // standard holidays that don't shift based on year
|
|
4510
4521
|
|
|
@@ -4516,7 +4527,7 @@ function getHolidaysForYear(year) {
|
|
|
4516
4527
|
emoji: '📖✍️'
|
|
4517
4528
|
}]]); // first SAT after RH
|
|
4518
4529
|
|
|
4519
|
-
add(new HolidayEvent(new HDate
|
|
4530
|
+
add(new HolidayEvent(new HDate(HDate.dayOnOrBefore(SAT$1, 7 + RH.abs())), 'Shabbat Shuva', SPECIAL_SHABBAT$1));
|
|
4520
4531
|
addEvents(year, [[10, TISHREI$1, 'Yom Kippur', CHAG | YOM_TOV_ENDS$1 | MAJOR_FAST$1, {
|
|
4521
4532
|
emoji: '📖✍️'
|
|
4522
4533
|
}], [14, TISHREI$1, 'Erev Sukkot', EREV$1 | LIGHT_CANDLES$1], // Attributes for Israel and Diaspora are different
|
|
@@ -4542,37 +4553,37 @@ function getHolidaysForYear(year) {
|
|
|
4542
4553
|
cholHaMoedDay: -1
|
|
4543
4554
|
}], [22, TISHREI$1, 'Shmini Atzeret', CHAG | LIGHT_CANDLES_TZEIS$1 | CHUL_ONLY$1], // [22, TISHREI, "Shmini Atzeret / Simchat Torah", YOM_TOV_ENDS | IL_ONLY],
|
|
4544
4555
|
[22, TISHREI$1, 'Shmini Atzeret', CHAG | YOM_TOV_ENDS$1 | IL_ONLY$1], [23, TISHREI$1, 'Simchat Torah', CHAG | YOM_TOV_ENDS$1 | CHUL_ONLY$1]]);
|
|
4545
|
-
add(new HolidayEvent(new HDate
|
|
4556
|
+
add(new HolidayEvent(new HDate(24, KISLEV$1, year), 'Chanukah: 1 Candle', EREV$1 | MINOR_HOLIDAY$1 | CHANUKAH_CANDLES$1, {
|
|
4546
4557
|
emoji: chanukahEmoji + KEYCAP_DIGITS[1]
|
|
4547
4558
|
})); // yes, we know Kislev 30-32 are wrong
|
|
4548
4559
|
// HDate() corrects the month automatically
|
|
4549
4560
|
|
|
4550
4561
|
for (let candles = 2; candles <= 8; candles++) {
|
|
4551
|
-
const hd = new HDate
|
|
4562
|
+
const hd = new HDate(23 + candles, KISLEV$1, year);
|
|
4552
4563
|
add(new HolidayEvent(hd, `Chanukah: ${candles} Candles`, MINOR_HOLIDAY$1 | CHANUKAH_CANDLES$1, {
|
|
4553
4564
|
chanukahDay: candles - 1,
|
|
4554
4565
|
emoji: chanukahEmoji + KEYCAP_DIGITS[candles]
|
|
4555
4566
|
}));
|
|
4556
4567
|
}
|
|
4557
4568
|
|
|
4558
|
-
add(new HolidayEvent(new HDate
|
|
4569
|
+
add(new HolidayEvent(new HDate(32, KISLEV$1, year), 'Chanukah: 8th Day', MINOR_HOLIDAY$1, {
|
|
4559
4570
|
chanukahDay: 8,
|
|
4560
4571
|
emoji: chanukahEmoji
|
|
4561
4572
|
}));
|
|
4562
|
-
add(new AsaraBTevetEvent(new HDate
|
|
4573
|
+
add(new AsaraBTevetEvent(new HDate(10, TEVET$1, year), 'Asara B\'Tevet', MINOR_FAST$1), new HolidayEvent(new HDate(15, SHVAT$1, year), 'Tu BiShvat', MINOR_HOLIDAY$1, {
|
|
4563
4574
|
emoji: '🌳'
|
|
4564
4575
|
}));
|
|
4565
4576
|
const pesachAbs = pesach.abs();
|
|
4566
|
-
add(new HolidayEvent(new HDate
|
|
4577
|
+
add(new HolidayEvent(new HDate(HDate.dayOnOrBefore(SAT$1, pesachAbs - 43)), 'Shabbat Shekalim', SPECIAL_SHABBAT$1), new HolidayEvent(new HDate(HDate.dayOnOrBefore(SAT$1, pesachAbs - 30)), 'Shabbat Zachor', SPECIAL_SHABBAT$1), new HolidayEvent(new HDate(pesachAbs - (pesach.getDay() == TUE ? 33 : 31)), 'Ta\'anit Esther', MINOR_FAST$1));
|
|
4567
4578
|
addEvents(year, [[13, ADAR_II$1, 'Erev Purim', EREV$1 | MINOR_HOLIDAY$1, {
|
|
4568
4579
|
emoji: '🎭️📜'
|
|
4569
4580
|
}], [14, ADAR_II$1, 'Purim', MINOR_HOLIDAY$1, {
|
|
4570
4581
|
emoji: '🎭️📜'
|
|
4571
4582
|
}]]);
|
|
4572
|
-
add(new HolidayEvent(new HDate
|
|
4583
|
+
add(new HolidayEvent(new HDate(pesachAbs - (pesach.getDay() == SUN ? 28 : 29)), 'Shushan Purim', MINOR_HOLIDAY$1, {
|
|
4573
4584
|
emoji: '🎭️📜'
|
|
4574
|
-
}), new HolidayEvent(new HDate
|
|
4575
|
-
pesach.prev().getDay() == SAT$1 ? pesach.onOrBefore(THU) : new HDate
|
|
4585
|
+
}), new HolidayEvent(new HDate(HDate.dayOnOrBefore(SAT$1, pesachAbs - 14) - 7), 'Shabbat Parah', SPECIAL_SHABBAT$1), new HolidayEvent(new HDate(HDate.dayOnOrBefore(SAT$1, pesachAbs - 14)), 'Shabbat HaChodesh', SPECIAL_SHABBAT$1), new HolidayEvent(new HDate(HDate.dayOnOrBefore(SAT$1, pesachAbs - 1)), 'Shabbat HaGadol', SPECIAL_SHABBAT$1), new HolidayEvent( // if the fast falls on Shabbat, move to Thursday
|
|
4586
|
+
pesach.prev().getDay() == SAT$1 ? pesach.onOrBefore(THU) : new HDate(14, NISAN$1, year), 'Ta\'anit Bechorot', MINOR_FAST$1));
|
|
4576
4587
|
addEvents(year, [[14, NISAN$1, 'Erev Pesach', EREV$1 | LIGHT_CANDLES$1], // Attributes for Israel and Diaspora are different
|
|
4577
4588
|
[15, NISAN$1, 'Pesach I', CHAG | YOM_TOV_ENDS$1 | IL_ONLY$1], [16, NISAN$1, 'Pesach II (CH\'\'M)', IL_ONLY$1 | CHOL_HAMOED$1, {
|
|
4578
4589
|
cholHaMoedDay: 1
|
|
@@ -4607,22 +4618,22 @@ function getHolidaysForYear(year) {
|
|
|
4607
4618
|
}], [1, ELUL$1, 'Rosh Hashana LaBehemot', MINOR_HOLIDAY$1, {
|
|
4608
4619
|
emoji: '🐑'
|
|
4609
4620
|
}]]);
|
|
4610
|
-
add(new HolidayEvent(new HDate
|
|
4621
|
+
add(new HolidayEvent(new HDate(HDate.dayOnOrBefore(SAT$1, new HDate(1, TISHREI$1, year + 1).abs() - 4)), 'Leil Selichot', MINOR_HOLIDAY$1, {
|
|
4611
4622
|
emoji: '🕍'
|
|
4612
4623
|
}));
|
|
4613
|
-
add(new HolidayEvent(new HDate
|
|
4624
|
+
add(new HolidayEvent(new HDate(29, ELUL$1, year), 'Erev Rosh Hashana', EREV$1 | LIGHT_CANDLES$1, {
|
|
4614
4625
|
emoji: '🍏🍯'
|
|
4615
4626
|
}));
|
|
4616
4627
|
|
|
4617
|
-
if (HDate
|
|
4618
|
-
add(new HolidayEvent(new HDate
|
|
4628
|
+
if (HDate.isLeapYear(year)) {
|
|
4629
|
+
add(new HolidayEvent(new HDate(14, ADAR_I$1, year), 'Purim Katan', MINOR_HOLIDAY$1, {
|
|
4619
4630
|
emoji: '🎭️'
|
|
4620
4631
|
}));
|
|
4621
4632
|
}
|
|
4622
4633
|
|
|
4623
4634
|
if (year >= 5711) {
|
|
4624
4635
|
// Yom HaShoah first observed in 1951
|
|
4625
|
-
let nisan27dt = new HDate
|
|
4636
|
+
let nisan27dt = new HDate(27, NISAN$1, year);
|
|
4626
4637
|
/* When the actual date of Yom Hashoah falls on a Friday, the
|
|
4627
4638
|
* state of Israel observes Yom Hashoah on the preceding
|
|
4628
4639
|
* Thursday. When it falls on a Sunday, Yom Hashoah is observed
|
|
@@ -4631,9 +4642,9 @@ function getHolidaysForYear(year) {
|
|
|
4631
4642
|
*/
|
|
4632
4643
|
|
|
4633
4644
|
if (nisan27dt.getDay() == FRI$1) {
|
|
4634
|
-
nisan27dt = new HDate
|
|
4645
|
+
nisan27dt = new HDate(26, NISAN$1, year);
|
|
4635
4646
|
} else if (nisan27dt.getDay() == SUN) {
|
|
4636
|
-
nisan27dt = new HDate
|
|
4647
|
+
nisan27dt = new HDate(28, NISAN$1, year);
|
|
4637
4648
|
}
|
|
4638
4649
|
|
|
4639
4650
|
add(new HolidayEvent(nisan27dt, 'Yom HaShoah', MODERN_HOLIDAY$1));
|
|
@@ -4655,34 +4666,34 @@ function getHolidaysForYear(year) {
|
|
|
4655
4666
|
day = 4;
|
|
4656
4667
|
}
|
|
4657
4668
|
|
|
4658
|
-
add(new HolidayEvent(new HDate
|
|
4669
|
+
add(new HolidayEvent(new HDate(day, IYYAR, year), 'Yom HaZikaron', MODERN_HOLIDAY$1, emojiIsraelFlag), new HolidayEvent(new HDate(day + 1, IYYAR, year), 'Yom HaAtzma\'ut', MODERN_HOLIDAY$1, emojiIsraelFlag));
|
|
4659
4670
|
}
|
|
4660
4671
|
|
|
4661
4672
|
if (year >= 5727) {
|
|
4662
4673
|
// Yom Yerushalayim only celebrated after 1967
|
|
4663
|
-
add(new HolidayEvent(new HDate
|
|
4674
|
+
add(new HolidayEvent(new HDate(28, IYYAR, year), 'Yom Yerushalayim', MODERN_HOLIDAY$1, emojiIsraelFlag));
|
|
4664
4675
|
}
|
|
4665
4676
|
|
|
4666
4677
|
if (year >= 5769) {
|
|
4667
|
-
add(new HolidayEvent(new HDate
|
|
4678
|
+
add(new HolidayEvent(new HDate(29, CHESHVAN$1, year), 'Sigd', MODERN_HOLIDAY$1));
|
|
4668
4679
|
}
|
|
4669
4680
|
|
|
4670
4681
|
if (year >= 5777) {
|
|
4671
|
-
add(new HolidayEvent(new HDate
|
|
4682
|
+
add(new HolidayEvent(new HDate(7, CHESHVAN$1, year), 'Yom HaAliyah School Observance', MODERN_HOLIDAY$1, emojiIsraelFlag), new HolidayEvent(new HDate(10, NISAN$1, year), 'Yom HaAliyah', MODERN_HOLIDAY$1, emojiIsraelFlag));
|
|
4672
4683
|
}
|
|
4673
4684
|
|
|
4674
|
-
let tamuz17 = new HDate
|
|
4685
|
+
let tamuz17 = new HDate(17, TAMUZ, year);
|
|
4675
4686
|
let tamuz17attrs;
|
|
4676
4687
|
|
|
4677
4688
|
if (tamuz17.getDay() == SAT$1) {
|
|
4678
|
-
tamuz17 = new HDate
|
|
4689
|
+
tamuz17 = new HDate(18, TAMUZ, year);
|
|
4679
4690
|
tamuz17attrs = {
|
|
4680
4691
|
observed: true
|
|
4681
4692
|
};
|
|
4682
4693
|
}
|
|
4683
4694
|
|
|
4684
4695
|
add(new HolidayEvent(tamuz17, 'Tzom Tammuz', MINOR_FAST$1, tamuz17attrs));
|
|
4685
|
-
let av9dt = new HDate
|
|
4696
|
+
let av9dt = new HDate(9, AV, year);
|
|
4686
4697
|
let av9title = 'Tish\'a B\'Av';
|
|
4687
4698
|
let av9attrs;
|
|
4688
4699
|
|
|
@@ -4695,17 +4706,17 @@ function getHolidaysForYear(year) {
|
|
|
4695
4706
|
}
|
|
4696
4707
|
|
|
4697
4708
|
const av9abs = av9dt.abs();
|
|
4698
|
-
add(new HolidayEvent(new HDate
|
|
4699
|
-
const monthsInYear = HDate
|
|
4709
|
+
add(new HolidayEvent(new HDate(HDate.dayOnOrBefore(SAT$1, av9abs)), 'Shabbat Chazon', SPECIAL_SHABBAT$1), new HolidayEvent(av9dt.prev(), 'Erev Tish\'a B\'Av', EREV$1 | MAJOR_FAST$1, av9attrs), new HolidayEvent(av9dt, av9title, MAJOR_FAST$1, av9attrs), new HolidayEvent(new HDate(HDate.dayOnOrBefore(SAT$1, av9abs + 7)), 'Shabbat Nachamu', SPECIAL_SHABBAT$1));
|
|
4710
|
+
const monthsInYear = HDate.monthsInYear(year);
|
|
4700
4711
|
|
|
4701
4712
|
for (let month = 1; month <= monthsInYear; month++) {
|
|
4702
|
-
const monthName = HDate
|
|
4713
|
+
const monthName = HDate.getMonthName(month, year);
|
|
4703
4714
|
|
|
4704
|
-
if ((month == NISAN$1 ? HDate
|
|
4705
|
-
add(new RoshChodeshEvent(new HDate
|
|
4706
|
-
add(new RoshChodeshEvent(new HDate
|
|
4715
|
+
if ((month == NISAN$1 ? HDate.daysInMonth(HDate.monthsInYear(year - 1), year - 1) : HDate.daysInMonth(month - 1, year)) == 30) {
|
|
4716
|
+
add(new RoshChodeshEvent(new HDate(1, month, year), monthName));
|
|
4717
|
+
add(new RoshChodeshEvent(new HDate(30, month - 1, year), monthName));
|
|
4707
4718
|
} else if (month !== TISHREI$1) {
|
|
4708
|
-
add(new RoshChodeshEvent(new HDate
|
|
4719
|
+
add(new RoshChodeshEvent(new HDate(1, month, year), monthName));
|
|
4709
4720
|
}
|
|
4710
4721
|
|
|
4711
4722
|
if (month == ELUL$1) {
|
|
@@ -4713,8 +4724,8 @@ function getHolidaysForYear(year) {
|
|
|
4713
4724
|
} // Don't worry about month overrun; will get "Nisan" for month=14
|
|
4714
4725
|
|
|
4715
4726
|
|
|
4716
|
-
const nextMonthName = HDate
|
|
4717
|
-
add(new MevarchimChodeshEvent(new HDate
|
|
4727
|
+
const nextMonthName = HDate.getMonthName(month + 1, year);
|
|
4728
|
+
add(new MevarchimChodeshEvent(new HDate(29, month, year).onOrBefore(SAT$1), nextMonthName));
|
|
4718
4729
|
}
|
|
4719
4730
|
|
|
4720
4731
|
const sedra = getSedra(year, false);
|
|
@@ -4724,14 +4735,173 @@ function getHolidaysForYear(year) {
|
|
|
4724
4735
|
return h;
|
|
4725
4736
|
}
|
|
4726
4737
|
|
|
4727
|
-
var
|
|
4738
|
+
var mishnayot = [{k:"Berakhot",v:[5,8,6,7,5,8,5,8,5]},{k:"Peah",v:[6,8,8,11,8,11,8,9]},{k:"Demai",v:[4,5,6,7,11,12,8]},{k:"Kilayim",v:[9,11,7,9,8,9,8,6,10]},{k:"Sheviit",v:[8,10,10,10,9,6,7,11,9,9]},{k:"Terumot",v:[10,6,9,13,9,6,7,12,7,12,10]},{k:"Maasrot",v:[8,8,10,6,8]},{k:"Maaser Sheni",v:[7,10,13,12,15]},{k:"Challah",v:[9,8,10,11]},{k:"Orlah",v:[9,17,9]},{k:"Bikkurim",v:[11,11,12,5]},{k:"Shabbat",v:[11,7,6,2,4,10,4,7,7,6,6,6,7,4,3,8,8,3,6,5,3,6,5,5]},{k:"Eruvin",v:[10,6,9,11,9,10,11,11,4,15]},{k:"Pesachim",v:[7,8,8,9,10,6,13,8,11,9]},{k:"Shekalim",v:[7,5,4,9,6,6,7,8]},{k:"Yoma",v:[8,7,11,6,7,8,5,9]},{k:"Sukkah",v:[11,9,15,10,8]},{k:"Beitzah",v:[10,10,8,7,7]},{k:"Rosh Hashanah",v:[9,9,8,9]},{k:"Taanit",v:[7,10,9,8]},{k:"Megillah",v:[11,6,6,10]},{k:"Moed Katan",v:[10,5,9]},{k:"Chagigah",v:[8,7,8]},{k:"Yevamot",v:[4,10,10,13,6,6,6,6,6,9,7,6,13,9,10,7]},{k:"Ketubot",v:[10,10,9,12,9,7,10,8,9,6,6,4,11]},{k:"Nedarim",v:[4,5,11,8,6,10,9,7,10,8,12]},{k:"Nazir",v:[7,10,7,7,7,11,4,2,5]},{k:"Sotah",v:[9,6,8,5,5,4,8,7,15]},{k:"Gittin",v:[6,7,8,9,9,7,9,10,10]},{k:"Kiddushin",v:[10,10,13,14]},{k:"Bava Kamma",v:[4,6,11,9,7,6,7,7,12,10]},{k:"Bava Metzia",v:[8,11,12,12,11,8,11,9,13,6]},{k:"Bava Batra",v:[6,14,8,9,11,8,4,8,10,8]},{k:"Sanhedrin",v:[6,5,8,5,5,6,11,7,6,6,6]},{k:"Makkot",v:[10,8,16]},{k:"Shevuot",v:[7,5,11,13,5,7,8,6]},{k:"Eduyot",v:[14,10,12,12,7,3,9,7]},{k:"Avodah Zarah",v:[9,7,10,12,12]},{k:"Avot",v:[18,16,18,22,23,11]},{k:"Horayot",v:[5,7,8]},{k:"Zevachim",v:[4,5,6,6,8,7,6,12,7,8,8,6,8,10]},{k:"Menachot",v:[4,5,7,5,9,7,6,7,9,9,9,5,11]},{k:"Chullin",v:[7,10,7,7,5,7,6,6,8,4,2,5]},{k:"Bekhorot",v:[7,9,4,10,6,12,7,10,8]},{k:"Arakhin",v:[4,6,5,4,6,5,5,7,8]},{k:"Temurah",v:[6,3,5,4,6,5,6]},{k:"Keritot",v:[7,6,10,3,8,9]},{k:"Meilah",v:[4,9,8,6,5,6]},{k:"Tamid",v:[4,5,9,3,6,3,4]},{k:"Middot",v:[9,6,8,7,4]},{k:"Kinnim",v:[4,5,6]},{k:"Kelim",v:[9,8,8,4,11,4,6,11,8,8,9,8,8,8,6,8,17,9,10,7,3,10,5,17,9,9,12,10,8,4]},{k:"Oholot",v:[8,7,7,3,7,7,6,6,16,7,9,8,6,7,10,5,5,10]},{k:"Negaim",v:[6,5,8,11,5,8,5,10,3,10,12,7,12,13]},{k:"Parah",v:[4,5,11,4,9,5,12,11,9,6,9,11]},{k:"Tahorot",v:[9,8,8,13,9,10,9,9,9,8]},{k:"Mikvaot",v:[8,10,4,5,6,11,7,5,7,8]},{k:"Niddah",v:[7,7,7,7,9,14,5,4,11,8]},{k:"Makhshirin",v:[6,11,8,10,11,8]},{k:"Zavim",v:[6,4,3,7,12]},{k:"Tevul Yom",v:[5,8,6,7]},{k:"Yadayim",v:[5,4,5,8]},{k:"Oktzin",v:[6,10,12]}];
|
|
4739
|
+
|
|
4740
|
+
const cycleStartDate = new Date(1947, 4, 20);
|
|
4741
|
+
const mishnaYomiStart = greg.greg2abs(cycleStartDate);
|
|
4742
|
+
const numMishnayot = 4192;
|
|
4743
|
+
const numDays = numMishnayot / 2;
|
|
4744
|
+
/**
|
|
4745
|
+
* Describes a mishna to be read
|
|
4746
|
+
* @typedef {Object} MishnaYomi
|
|
4747
|
+
* @property {string} k tractate name in Sephardic transliteration (e.g. "Berakhot", "Moed Katan")
|
|
4748
|
+
* @property {string} v verse (e.g. "2:1")
|
|
4749
|
+
*/
|
|
4750
|
+
// eslint-disable-next-line require-jsdoc
|
|
4751
|
+
|
|
4752
|
+
function throwTypeError(msg) {
|
|
4753
|
+
throw new TypeError(msg);
|
|
4754
|
+
}
|
|
4755
|
+
/**
|
|
4756
|
+
* A program of daily learning in which participants study two Mishnahs
|
|
4757
|
+
* each day in order to finish the entire Mishnah in ~6 years.
|
|
4758
|
+
*/
|
|
4759
|
+
|
|
4760
|
+
|
|
4761
|
+
class MishnaYomiIndex {
|
|
4762
|
+
/**
|
|
4763
|
+
* Initializes a Mishna Yomi instance
|
|
4764
|
+
*/
|
|
4765
|
+
constructor() {
|
|
4766
|
+
const tmp = Array(numMishnayot);
|
|
4767
|
+
let i = 0;
|
|
4728
4768
|
|
|
4729
|
-
|
|
4769
|
+
for (const tractate of mishnayot) {
|
|
4770
|
+
const v = tractate.v;
|
|
4771
|
+
|
|
4772
|
+
for (let chap = 1; chap <= v.length; chap++) {
|
|
4773
|
+
const numv = v[chap - 1];
|
|
4774
|
+
|
|
4775
|
+
for (let verse = 1; verse <= numv; verse++) {
|
|
4776
|
+
tmp[i++] = {
|
|
4777
|
+
k: tractate.k,
|
|
4778
|
+
v: `${chap}:${verse}`
|
|
4779
|
+
};
|
|
4780
|
+
}
|
|
4781
|
+
}
|
|
4782
|
+
}
|
|
4783
|
+
|
|
4784
|
+
const days = Array(numDays);
|
|
4785
|
+
|
|
4786
|
+
for (let j = 0; j < numDays; j++) {
|
|
4787
|
+
const k = j * 2;
|
|
4788
|
+
days[j] = [tmp[k], tmp[k + 1]];
|
|
4789
|
+
}
|
|
4790
|
+
/** @type {MishnaYomi[]} */
|
|
4791
|
+
|
|
4792
|
+
|
|
4793
|
+
this.days = days;
|
|
4794
|
+
}
|
|
4795
|
+
/**
|
|
4796
|
+
* Looks up a Mishna Yomi
|
|
4797
|
+
* @param {Date|HDate|number} date Gregorian date
|
|
4798
|
+
* @return {MishnaYomi[]}
|
|
4799
|
+
*/
|
|
4800
|
+
|
|
4801
|
+
|
|
4802
|
+
lookup(date) {
|
|
4803
|
+
const abs = typeof date === 'number' && !isNaN(date) ? date : greg.isDate(date) ? greg.greg2abs(date) : HDate.isHDate(date) ? date.abs() : throwTypeError(`Invalid date: ${date}`);
|
|
4804
|
+
|
|
4805
|
+
if (abs < mishnaYomiStart) {
|
|
4806
|
+
const s = date.toISOString().substring(0, 10);
|
|
4807
|
+
throw new RangeError(`Date ${s} too early; Mishna Yomi cycle began on 1947-05-20`);
|
|
4808
|
+
}
|
|
4809
|
+
|
|
4810
|
+
const dayNum = (abs - mishnaYomiStart) % numDays;
|
|
4811
|
+
return this.days[dayNum];
|
|
4812
|
+
}
|
|
4813
|
+
|
|
4814
|
+
}
|
|
4815
|
+
|
|
4816
|
+
/**
|
|
4817
|
+
* @private
|
|
4818
|
+
* @param {MishnaYomi[]} mishnaYomi
|
|
4819
|
+
* @param {string} locale
|
|
4820
|
+
* @return {string}
|
|
4821
|
+
*/
|
|
4822
|
+
|
|
4823
|
+
function formatMyomi(mishnaYomi, locale) {
|
|
4824
|
+
const k1 = mishnaYomi[0].k;
|
|
4825
|
+
const cv1 = mishnaYomi[0].v;
|
|
4826
|
+
const mishna1 = Locale.gettext(k1, locale) + ' ' + cv1;
|
|
4827
|
+
const k2 = mishnaYomi[1].k;
|
|
4828
|
+
const cv2 = mishnaYomi[1].v;
|
|
4829
|
+
|
|
4830
|
+
if (k1 !== k2) {
|
|
4831
|
+
return mishna1 + '-' + Locale.gettext(k2, locale) + ' ' + cv2;
|
|
4832
|
+
}
|
|
4833
|
+
|
|
4834
|
+
const p1 = cv1.split(':');
|
|
4835
|
+
const p2 = cv2.split(':');
|
|
4836
|
+
|
|
4837
|
+
if (p1[0] === p2[0]) {
|
|
4838
|
+
return mishna1 + '-' + p2[1];
|
|
4839
|
+
}
|
|
4840
|
+
|
|
4841
|
+
return mishna1 + '-' + cv2;
|
|
4842
|
+
}
|
|
4843
|
+
/**
|
|
4844
|
+
* Event wrapper around a Mishna Yomi instance
|
|
4845
|
+
*/
|
|
4846
|
+
|
|
4847
|
+
|
|
4848
|
+
class MishnaYomiEvent extends Event {
|
|
4849
|
+
/**
|
|
4850
|
+
* @param {HDate} date
|
|
4851
|
+
* @param {MishnaYomi[]} mishnaYomi
|
|
4852
|
+
*/
|
|
4853
|
+
constructor(date, mishnaYomi) {
|
|
4854
|
+
super(date, formatMyomi(mishnaYomi, null), flags.MISHNA_YOMI, {
|
|
4855
|
+
mishnaYomi
|
|
4856
|
+
});
|
|
4857
|
+
}
|
|
4858
|
+
/**
|
|
4859
|
+
* Returns Mishna Yomi name (e.g. "Bava Metzia 10:5-6" or "Berakhot 9:5-Peah 1:1").
|
|
4860
|
+
* @param {string} [locale] Optional locale name (defaults to active locale).
|
|
4861
|
+
* @return {string}
|
|
4862
|
+
*/
|
|
4863
|
+
|
|
4864
|
+
|
|
4865
|
+
render(locale) {
|
|
4866
|
+
return formatMyomi(this.mishnaYomi, locale);
|
|
4867
|
+
}
|
|
4868
|
+
/**
|
|
4869
|
+
* Returns a link to sefaria.org
|
|
4870
|
+
* @return {string}
|
|
4871
|
+
*/
|
|
4872
|
+
|
|
4873
|
+
|
|
4874
|
+
url() {
|
|
4875
|
+
const mishnaYomi = this.mishnaYomi;
|
|
4876
|
+
const k1 = mishnaYomi[0].k;
|
|
4877
|
+
const mishna = k1 === 'Avot' ? 'Pirkei' : 'Mishnah';
|
|
4878
|
+
const name = k1.replace(/ /g, '_');
|
|
4879
|
+
const prefix = `https://www.sefaria.org/${mishna}_${name}`;
|
|
4880
|
+
const cv1 = mishnaYomi[0].v;
|
|
4881
|
+
|
|
4882
|
+
if (k1 !== mishnaYomi[1].k) {
|
|
4883
|
+
const verse1 = cv1.replace(':', '.');
|
|
4884
|
+
return `${prefix}.${verse1}?lang=bi`;
|
|
4885
|
+
}
|
|
4886
|
+
|
|
4887
|
+
const cv2 = mishnaYomi[1].v;
|
|
4888
|
+
const p1 = cv1.split(':');
|
|
4889
|
+
const p2 = cv2.split(':');
|
|
4890
|
+
const verse1 = p1.join('.');
|
|
4891
|
+
const verse2 = p1[0] === p2[0] ? p2[1] : p2.join('.');
|
|
4892
|
+
return `${prefix}.${verse1}-${verse2}?lang=bi`;
|
|
4893
|
+
}
|
|
4894
|
+
|
|
4895
|
+
}
|
|
4896
|
+
|
|
4897
|
+
var version="3.33.2";
|
|
4898
|
+
|
|
4899
|
+
var headers$1={"plural-forms":"nplurals=2; plural=(n > 1);",language:"en_CA@ashkenazi"};var contexts$1={"":{Berachot:["Berachos"],Shabbat:["Shabbos"],Taanit:["Taanis"],Yevamot:["Yevamos"],Ketubot:["Kesubos"],"Baba Batra":["Baba Basra"],Makkot:["Makkos"],Shevuot:["Shevuos"],Horayot:["Horayos"],Menachot:["Menachos"],Bechorot:["Bechoros"],Keritot:["Kerisos"],Midot:["Midos"],"Achrei Mot":["Achrei Mos"],Bechukotai:["Bechukosai"],"Beha'alotcha":["Beha'aloscha"],Bereshit:["Bereshis"],Chukat:["Chukas"],"Erev Shavuot":["Erev Shavuos"],"Erev Sukkot":["Erev Sukkos"],"Ki Tavo":["Ki Savo"],"Ki Teitzei":["Ki Seitzei"],"Ki Tisa":["Ki Sisa"],Matot:["Matos"],"Purim Katan":["Purim Koton"],Tazria:["Sazria"],"Shabbat Chazon":["Shabbos Chazon"],"Shabbat HaChodesh":["Shabbos HaChodesh"],"Shabbat HaGadol":["Shabbos HaGadol"],"Shabbat Nachamu":["Shabbos Nachamu"],"Shabbat Parah":["Shabbos Parah"],"Shabbat Shekalim":["Shabbos Shekalim"],"Shabbat Shuva":["Shabbos Shuvah"],"Shabbat Zachor":["Shabbos Zachor"],Shavuot:["Shavuos"],"Shavuot I":["Shavuos I"],"Shavuot II":["Shavuos II"],Shemot:["Shemos"],"Shmini Atzeret":["Shmini Atzeres"],"Simchat Torah":["Simchas Torah"],Sukkot:["Sukkos"],"Sukkot I":["Sukkos I"],"Sukkot II":["Sukkos II"],"Sukkot II (CH''M)":["Sukkos II (CH''M)"],"Sukkot III (CH''M)":["Sukkos III (CH''M)"],"Sukkot IV (CH''M)":["Sukkos IV (CH''M)"],"Sukkot V (CH''M)":["Sukkos V (CH''M)"],"Sukkot VI (CH''M)":["Sukkos VI (CH''M)"],"Sukkot VII (Hoshana Raba)":["Sukkos VII (Hoshana Raba)"],"Ta'anit Bechorot":["Ta'anis Bechoros"],"Ta'anit Esther":["Ta'anis Esther"],Toldot:["Toldos"],Vaetchanan:["Vaeschanan"],Yitro:["Yisro"],"Vezot Haberakhah":["Vezos Haberakhah"],Parashat:["Parshas"],"Leil Selichot":["Leil Selichos"],"Shabbat Mevarchim Chodesh":["Shabbos Mevorchim Chodesh"],"Shabbat Shirah":["Shabbos Shirah"],Tevet:["Teves"],"Asara B'Tevet":["Asara B'Teves"],Berakhot:["Berakhos"],Sheviit:["Sheviis"],Terumot:["Terumos"],Maasrot:["Maasros"],Eduyot:["Eduyos"],Avot:["Avos"],Bekhorot:["Bekhoros"],Middot:["Middos"],Oholot:["Oholos"],Tahorot:["Tahoros"],Mikvaot:["Mikvaos"]}};var poAshkenazi = {headers:headers$1,contexts:contexts$1};
|
|
4730
4900
|
|
|
4731
4901
|
Locale.addLocale('ashkenazi', poAshkenazi);
|
|
4732
4902
|
Locale.addLocale('a', poAshkenazi);
|
|
4733
4903
|
|
|
4734
|
-
var headers={"plural-forms":"nplurals=2; plural=(n > 1);",language:"he_IL"};var contexts={"":{Berachot:["ברכות"],Shabbat:["שַׁבָּת"],Eruvin:["עירובין"],Pesachim:["פסחים"],Shekalim:["שקלים"],Yoma:["יומא"],Sukkah:["סוכה"],Beitzah:["ביצה"],Taanit:["תענית"],Megillah:["מגילה"],"Moed Katan":["מועד קטן"],Chagigah:["חגיגה"],Yevamot:["יבמות"],Ketubot:["כתובות"],Nedarim:["נדרים"],Nazir:["נזיר"],Sotah:["סוטה"],Gitin:["גיטין"],Kiddushin:["קידושין"],"Baba Kamma":["בבא קמא"],"Baba Metzia":["בבא מציעא"],"Baba Batra":["בבא בתרא"],Sanhedrin:["סנהדרין"],Makkot:["מכות"],Shevuot:["שבועות"],"Avodah Zarah":["עבודה זרה"],Horayot:["הוריות"],Zevachim:["זבחים"],Menachot:["מנחות"],Chullin:["חולין"],Bechorot:["בכורות"],Arachin:["ערכין"],Temurah:["תמורה"],Keritot:["כריתות"],Meilah:["מעילה"],Kinnim:["קינים"],Tamid:["תמיד"],Midot:["מדות"],Niddah:["נדה"],"Daf Yomi: %s %d":["דף יומי: %s %d"],"Daf Yomi":["דף יומי"],Parashat:["פָּרָשַׁת"],"Achrei Mot":["אַחֲרֵי מוֹת"],Balak:["בָּלָק"],Bamidbar:["בְּמִדְבַּר"],Bechukotai:["בְּחֻקֹּתַי"],"Beha'alotcha":["בְּהַעֲלֹתְךָ"],Behar:["בְּהַר"],Bereshit:["בְּרֵאשִׁית"],Beshalach:["בְּשַׁלַּח"],Bo:["בֹּא"],"Chayei Sara":["חַיֵּי שָֹרָה"],Chukat:["חֻקַּת"],Devarim:["דְּבָרִים"],Eikev:["עֵקֶב"],Emor:["אֱמוֹר"],"Ha'Azinu":["הַאֲזִינוּ"],Kedoshim:["קְדשִׁים"],"Ki Tavo":["כִּי־תָבוֹא"],"Ki Teitzei":["כִּי־תֵצֵא"],"Ki Tisa":["כִּי תִשָּׂא"],Korach:["קוֹרַח"],"Lech-Lecha":["לֶךְ־לְךָ"],Masei:["מַסְעֵי"],Matot:["מַּטּוֹת"],Metzora:["מְּצֹרָע"],Miketz:["מִקֵּץ"],Mishpatim:["מִּשְׁפָּטִים"],Nasso:["נָשׂא"],Nitzavim:["נִצָּבִים"],Noach:["נֹחַ"],Pekudei:["פְקוּדֵי"],Pinchas:["פִּינְחָס"],"Re'eh":["רְאֵה"],"Sh'lach":["שְׁלַח־לְךָ"],Shemot:["שְׁמוֹת"],Shmini:["שְּׁמִינִי"],Shoftim:["שׁוֹפְטִים"],Tazria:["תַזְרִיעַ"],Terumah:["תְּרוּמָה"],Tetzaveh:["תְּצַוֶּה"],Toldot:["תּוֹלְדוֹת"],Tzav:["צַו"],Vaera:["וָאֵרָא"],Vaetchanan:["וָאֶתְחַנַּן"],Vayakhel:["וַיַּקְהֵל"],Vayechi:["וַיְחִי"],Vayeilech:["וַיֵּלֶךְ"],Vayera:["וַיֵּרָא"],Vayeshev:["וַיֵּשֶׁב"],Vayetzei:["וַיֵּצֵא"],Vayigash:["וַיִּגַּשׁ"],Vayikra:["וַיִּקְרָא"],Vayishlach:["וַיִּשְׁלַח"],"Vezot Haberakhah":["וְזֹאת הַבְּרָכָה"],Yitro:["יִתְרוֹ"],"Asara B'Tevet":["עֲשָׂרָה בְּטֵבֵת"],"Candle lighting":["הַדלָקָת נֵרוֹת"],Chanukah:["חֲנוּכָּה"],"Chanukah: 1 Candle":["חֲנוּכָּה: א׳ נֵר"],"Chanukah: 2 Candles":["חֲנוּכָּה: ב׳ נֵרוֹת"],"Chanukah: 3 Candles":["חֲנוּכָּה: ג׳ נֵרוֹת"],"Chanukah: 4 Candles":["חֲנוּכָּה: ד׳ נֵרוֹת"],"Chanukah: 5 Candles":["חֲנוּכָּה: ה׳ נֵרוֹת"],"Chanukah: 6 Candles":["חֲנוּכָּה: ו׳ נֵרוֹת"],"Chanukah: 7 Candles":["חֲנוּכָּה: ז׳ נֵרוֹת"],"Chanukah: 8 Candles":["חֲנוּכָּה: ח׳ נֵרוֹת"],"Chanukah: 8th Day":["חֲנוּכָּה: יוֹם ח׳"],"Days of the Omer":["עוֹמֶר"],Omer:["עוֹמֶר"],"day of the Omer":["בָּעוֹמֶר"],"Erev Pesach":["עֶרֶב פֶּסַח"],"Erev Purim":["עֶרֶב פּוּרִים"],"Erev Rosh Hashana":["עֶרֶב רֹאשׁ הַשָּׁנָה"],"Erev Shavuot":["עֶרֶב שָׁבוּעוֹת"],"Erev Simchat Torah":["עֶרֶב שִׂמְחַת תּוֹרָה"],"Erev Sukkot":["עֶרֶב סוּכּוֹת"],"Erev Tish'a B'Av":["עֶרֶב תִּשְׁעָה בְּאָב"],"Erev Yom Kippur":["עֶרֶב יוֹם כִּפּוּר"],Havdalah:["הַבדָלָה"],"Lag BaOmer":["ל״ג בָּעוֹמֶר"],"Leil Selichot":["סליחות"],Pesach:["פֶּסַח"],"Pesach I":["פֶּסַח א׳"],"Pesach II":["פֶּסַח ב׳"],"Pesach II (CH''M)":["פֶּסַח ב׳ (חוה״מ)"],"Pesach III (CH''M)":["פֶּסַח ג׳ (חוה״מ)"],"Pesach IV (CH''M)":["פֶּסַח ד׳ (חוה״מ)"],"Pesach Sheni":["פֶּסַח שני"],"Pesach V (CH''M)":["פֶּסַח ה׳ (חוה״מ)"],"Pesach VI (CH''M)":["פֶּסַח ו׳ (חוה״מ)"],"Pesach VII":["פֶּסַח ז׳"],"Pesach VIII":["פֶּסַח ח׳"],Purim:["פּוּרִים"],"Purim Katan":["פּוּרִים קָטָן"],"Rosh Chodesh %s":["רֹאשׁ חוֹדֶשׁ %s"],"Rosh Chodesh":["רֹאשׁ חוֹדֶשׁ"],Adar:["אַדָר"],"Adar I":["אַדָר א׳"],"Adar II":["אַדָר ב׳"],Av:["אָב"],Cheshvan:["חֶשְׁוָן"],Elul:["אֱלוּל"],Iyyar:["אִיָיר"],Kislev:["כִּסְלֵו"],Nisan:["נִיסָן"],"Sh'vat":["שְׁבָט"],Sivan:["סִיוָן"],Tamuz:["תַּמּוּז"],Tevet:["טֵבֵת"],Tishrei:["תִשְׁרֵי"],"Rosh Hashana":["רֹאשׁ הַשָּׁנָה"],"Rosh Hashana I":["רֹאשׁ הַשָּׁנָה א׳"],"Rosh Hashana II":["רֹאשׁ הַשָּׁנָה ב׳"],"Shabbat Chazon":["שַׁבָּת חֲזוֹן"],"Shabbat HaChodesh":["שַׁבָּת הַחֹדֶשׁ"],"Shabbat HaGadol":["שַׁבָּת הַגָּדוֹל"],"Shabbat Machar Chodesh":["שַׁבָּת מָחָר חוֹדֶשׁ"],"Shabbat Nachamu":["שַׁבָּת נַחֲמוּ"],"Shabbat Parah":["שַׁבָּת פּרה"],"Shabbat Rosh Chodesh":["שַׁבָּת רֹאשׁ חוֹדֶשׁ"],"Shabbat Shekalim":["שַׁבָּת שְׁקָלִים"],"Shabbat Shuva":["שַׁבָּת שׁוּבָה"],"Shabbat Zachor":["שַׁבָּת זָכוֹר"],Shavuot:["שָׁבוּעוֹת"],"Shavuot I":["שָׁבוּעוֹת א׳"],"Shavuot II":["שָׁבוּעוֹת ב׳"],"Shmini Atzeret":["שְׁמִינִי עֲצֶרֶת"],"Shushan Purim":["שׁוּשָׁן פּוּרִים"],Sigd:["סיגד"],"Simchat Torah":["שִׂמְחַת תּוֹרָה"],Sukkot:["סוּכּוֹת"],"Sukkot I":["סוּכּוֹת א׳"],"Sukkot II":["סוּכּוֹת ב׳"],"Sukkot II (CH''M)":["סוּכּוֹת ב׳ (חוה״מ)"],"Sukkot III (CH''M)":["סוּכּוֹת ג׳ (חוה״מ)"],"Sukkot IV (CH''M)":["סוּכּוֹת ד׳ (חוה״מ)"],"Sukkot V (CH''M)":["סוּכּוֹת ה׳ (חוה״מ)"],"Sukkot VI (CH''M)":["סוּכּוֹת ו׳ (חוה״מ)"],"Sukkot VII (Hoshana Raba)":["סוּכּוֹת ז׳ (הוֹשַׁעְנָא רַבָּה)"],"Ta'anit Bechorot":["תַּעֲנִית בְּכוֹרוֹת"],"Ta'anit Esther":["תַּעֲנִית אֶסְתֵּר"],"Tish'a B'Av":["תִּשְׁעָה בְּאָב"],"Tu B'Av":["טוּ בְּאָב"],"Tu BiShvat":["טוּ בִּשְׁבָט"],"Tu B'Shvat":["טוּ בִּשְׁבָט"],"Tzom Gedaliah":["צוֹם גְּדַלְיָה"],"Tzom Tammuz":["צוֹם תָּמוּז"],"Yom HaAtzma'ut":["יוֹם הָעַצְמָאוּת"],"Yom HaShoah":["יוֹם הַשּׁוֹאָה"],"Yom HaZikaron":["יוֹם הַזִּכָּרוֹן"],"Yom Kippur":["יוֹם כִּפּוּר"],"Yom Yerushalayim":["יוֹם יְרוּשָׁלַיִם"],"Yom HaAliyah":["יוֹם הַעֲלִיָּה"],"Yom HaAliyah School Observance":["שְׁמִירָת בֵּית הַסֵפֶר לְיוֹם הַעֲלִיָּה"],"Pesach I (on Shabbat)":["פֶּסַח יוֹם א׳ (בְּשַׁבָּת)"],"Pesach Chol ha-Moed Day 1":["פֶּסַח חוֹל הַמּוֹעֵד יוֹם א׳"],"Pesach Chol ha-Moed Day 2":["פֶּסַח חוֹל הַמּוֹעֵד יוֹם ב׳"],"Pesach Chol ha-Moed Day 3":["פֶּסַח חוֹל הַמּוֹעֵד יוֹם ג׳"],"Pesach Chol ha-Moed Day 4":["פֶּסַח חוֹל הַמּוֹעֵד יוֹם ד׳"],"Pesach Chol ha-Moed Day 5":["פֶּסַח חוֹל הַמּוֹעֵד יוֹם ה׳"],"Pesach Shabbat Chol ha-Moed":["פֶּסַח שַׁבָּת חוֹל הַמּוֹעֵד"],"Shavuot II (on Shabbat)":["שָׁבוּעוֹת יוֹם ב׳ (בְּשַׁבָּת)"],"Rosh Hashana I (on Shabbat)":["רֹאשׁ הַשָּׁנָה יוֹם א׳ (בְּשַׁבָּת)"],"Yom Kippur (on Shabbat)":["יוֹם כִּפּוּר (בְּשַׁבָּת)"],"Yom Kippur (Mincha, Traditional)":["יוֹם כִּפּוּר מנחה"],"Yom Kippur (Mincha, Alternate)":["יוֹם כִּפּוּר מנחה"],"Sukkot I (on Shabbat)":["סוּכּוֹת יוֹם א׳ (בְּשַׁבָּת)"],"Sukkot Chol ha-Moed Day 1":["סוּכּוֹת
|
|
4904
|
+
var headers={"plural-forms":"nplurals=2; plural=(n > 1);",language:"he_IL"};var contexts={"":{Berachot:["ברכות"],Shabbat:["שַׁבָּת"],Eruvin:["עירובין"],Pesachim:["פסחים"],Shekalim:["שקלים"],Yoma:["יומא"],Sukkah:["סוכה"],Beitzah:["ביצה"],Taanit:["תענית"],Megillah:["מגילה"],"Moed Katan":["מועד קטן"],Chagigah:["חגיגה"],Yevamot:["יבמות"],Ketubot:["כתובות"],Nedarim:["נדרים"],Nazir:["נזיר"],Sotah:["סוטה"],Gitin:["גיטין"],Kiddushin:["קידושין"],"Baba Kamma":["בבא קמא"],"Baba Metzia":["בבא מציעא"],"Baba Batra":["בבא בתרא"],Sanhedrin:["סנהדרין"],Makkot:["מכות"],Shevuot:["שבועות"],"Avodah Zarah":["עבודה זרה"],Horayot:["הוריות"],Zevachim:["זבחים"],Menachot:["מנחות"],Chullin:["חולין"],Bechorot:["בכורות"],Arachin:["ערכין"],Temurah:["תמורה"],Keritot:["כריתות"],Meilah:["מעילה"],Kinnim:["קינים"],Tamid:["תמיד"],Midot:["מדות"],Niddah:["נדה"],"Daf Yomi: %s %d":["דף יומי: %s %d"],"Daf Yomi":["דף יומי"],Parashat:["פָּרָשַׁת"],"Achrei Mot":["אַחֲרֵי מוֹת"],Balak:["בָּלָק"],Bamidbar:["בְּמִדְבַּר"],Bechukotai:["בְּחֻקֹּתַי"],"Beha'alotcha":["בְּהַעֲלֹתְךָ"],Behar:["בְּהַר"],Bereshit:["בְּרֵאשִׁית"],Beshalach:["בְּשַׁלַּח"],Bo:["בֹּא"],"Chayei Sara":["חַיֵּי שָֹרָה"],Chukat:["חֻקַּת"],Devarim:["דְּבָרִים"],Eikev:["עֵקֶב"],Emor:["אֱמוֹר"],"Ha'Azinu":["הַאֲזִינוּ"],Kedoshim:["קְדשִׁים"],"Ki Tavo":["כִּי־תָבוֹא"],"Ki Teitzei":["כִּי־תֵצֵא"],"Ki Tisa":["כִּי תִשָּׂא"],Korach:["קוֹרַח"],"Lech-Lecha":["לֶךְ־לְךָ"],Masei:["מַסְעֵי"],Matot:["מַּטּוֹת"],Metzora:["מְּצֹרָע"],Miketz:["מִקֵּץ"],Mishpatim:["מִּשְׁפָּטִים"],Nasso:["נָשׂא"],Nitzavim:["נִצָּבִים"],Noach:["נֹחַ"],Pekudei:["פְקוּדֵי"],Pinchas:["פִּינְחָס"],"Re'eh":["רְאֵה"],"Sh'lach":["שְׁלַח־לְךָ"],Shemot:["שְׁמוֹת"],Shmini:["שְּׁמִינִי"],Shoftim:["שׁוֹפְטִים"],Tazria:["תַזְרִיעַ"],Terumah:["תְּרוּמָה"],Tetzaveh:["תְּצַוֶּה"],Toldot:["תּוֹלְדוֹת"],Tzav:["צַו"],Vaera:["וָאֵרָא"],Vaetchanan:["וָאֶתְחַנַּן"],Vayakhel:["וַיַּקְהֵל"],Vayechi:["וַיְחִי"],Vayeilech:["וַיֵּלֶךְ"],Vayera:["וַיֵּרָא"],Vayeshev:["וַיֵּשֶׁב"],Vayetzei:["וַיֵּצֵא"],Vayigash:["וַיִּגַּשׁ"],Vayikra:["וַיִּקְרָא"],Vayishlach:["וַיִּשְׁלַח"],"Vezot Haberakhah":["וְזֹאת הַבְּרָכָה"],Yitro:["יִתְרוֹ"],"Asara B'Tevet":["עֲשָׂרָה בְּטֵבֵת"],"Candle lighting":["הַדלָקָת נֵרוֹת"],Chanukah:["חֲנוּכָּה"],"Chanukah: 1 Candle":["חֲנוּכָּה: א׳ נֵר"],"Chanukah: 2 Candles":["חֲנוּכָּה: ב׳ נֵרוֹת"],"Chanukah: 3 Candles":["חֲנוּכָּה: ג׳ נֵרוֹת"],"Chanukah: 4 Candles":["חֲנוּכָּה: ד׳ נֵרוֹת"],"Chanukah: 5 Candles":["חֲנוּכָּה: ה׳ נֵרוֹת"],"Chanukah: 6 Candles":["חֲנוּכָּה: ו׳ נֵרוֹת"],"Chanukah: 7 Candles":["חֲנוּכָּה: ז׳ נֵרוֹת"],"Chanukah: 8 Candles":["חֲנוּכָּה: ח׳ נֵרוֹת"],"Chanukah: 8th Day":["חֲנוּכָּה: יוֹם ח׳"],"Days of the Omer":["עוֹמֶר"],Omer:["עוֹמֶר"],"day of the Omer":["בָּעוֹמֶר"],"Erev Pesach":["עֶרֶב פֶּסַח"],"Erev Purim":["עֶרֶב פּוּרִים"],"Erev Rosh Hashana":["עֶרֶב רֹאשׁ הַשָּׁנָה"],"Erev Shavuot":["עֶרֶב שָׁבוּעוֹת"],"Erev Simchat Torah":["עֶרֶב שִׂמְחַת תּוֹרָה"],"Erev Sukkot":["עֶרֶב סוּכּוֹת"],"Erev Tish'a B'Av":["עֶרֶב תִּשְׁעָה בְּאָב"],"Erev Yom Kippur":["עֶרֶב יוֹם כִּפּוּר"],Havdalah:["הַבדָלָה"],"Lag BaOmer":["ל״ג בָּעוֹמֶר"],"Leil Selichot":["סליחות"],Pesach:["פֶּסַח"],"Pesach I":["פֶּסַח א׳"],"Pesach II":["פֶּסַח ב׳"],"Pesach II (CH''M)":["פֶּסַח ב׳ (חוה״מ)"],"Pesach III (CH''M)":["פֶּסַח ג׳ (חוה״מ)"],"Pesach IV (CH''M)":["פֶּסַח ד׳ (חוה״מ)"],"Pesach Sheni":["פֶּסַח שני"],"Pesach V (CH''M)":["פֶּסַח ה׳ (חוה״מ)"],"Pesach VI (CH''M)":["פֶּסַח ו׳ (חוה״מ)"],"Pesach VII":["פֶּסַח ז׳"],"Pesach VIII":["פֶּסַח ח׳"],Purim:["פּוּרִים"],"Purim Katan":["פּוּרִים קָטָן"],"Rosh Chodesh %s":["רֹאשׁ חוֹדֶשׁ %s"],"Rosh Chodesh":["רֹאשׁ חוֹדֶשׁ"],Adar:["אַדָר"],"Adar I":["אַדָר א׳"],"Adar II":["אַדָר ב׳"],Av:["אָב"],Cheshvan:["חֶשְׁוָן"],Elul:["אֱלוּל"],Iyyar:["אִיָיר"],Kislev:["כִּסְלֵו"],Nisan:["נִיסָן"],"Sh'vat":["שְׁבָט"],Sivan:["סִיוָן"],Tamuz:["תַּמּוּז"],Tevet:["טֵבֵת"],Tishrei:["תִשְׁרֵי"],"Rosh Hashana":["רֹאשׁ הַשָּׁנָה"],"Rosh Hashana I":["רֹאשׁ הַשָּׁנָה א׳"],"Rosh Hashana II":["רֹאשׁ הַשָּׁנָה ב׳"],"Shabbat Chazon":["שַׁבָּת חֲזוֹן"],"Shabbat HaChodesh":["שַׁבָּת הַחֹדֶשׁ"],"Shabbat HaGadol":["שַׁבָּת הַגָּדוֹל"],"Shabbat Machar Chodesh":["שַׁבָּת מָחָר חוֹדֶשׁ"],"Shabbat Nachamu":["שַׁבָּת נַחֲמוּ"],"Shabbat Parah":["שַׁבָּת פּרה"],"Shabbat Rosh Chodesh":["שַׁבָּת רֹאשׁ חוֹדֶשׁ"],"Shabbat Shekalim":["שַׁבָּת שְׁקָלִים"],"Shabbat Shuva":["שַׁבָּת שׁוּבָה"],"Shabbat Zachor":["שַׁבָּת זָכוֹר"],Shavuot:["שָׁבוּעוֹת"],"Shavuot I":["שָׁבוּעוֹת א׳"],"Shavuot II":["שָׁבוּעוֹת ב׳"],"Shmini Atzeret":["שְׁמִינִי עֲצֶרֶת"],"Shushan Purim":["שׁוּשָׁן פּוּרִים"],Sigd:["סיגד"],"Simchat Torah":["שִׂמְחַת תּוֹרָה"],Sukkot:["סוּכּוֹת"],"Sukkot I":["סוּכּוֹת א׳"],"Sukkot II":["סוּכּוֹת ב׳"],"Sukkot II (CH''M)":["סוּכּוֹת ב׳ (חוה״מ)"],"Sukkot III (CH''M)":["סוּכּוֹת ג׳ (חוה״מ)"],"Sukkot IV (CH''M)":["סוּכּוֹת ד׳ (חוה״מ)"],"Sukkot V (CH''M)":["סוּכּוֹת ה׳ (חוה״מ)"],"Sukkot VI (CH''M)":["סוּכּוֹת ו׳ (חוה״מ)"],"Sukkot VII (Hoshana Raba)":["סוּכּוֹת ז׳ (הוֹשַׁעְנָא רַבָּה)"],"Ta'anit Bechorot":["תַּעֲנִית בְּכוֹרוֹת"],"Ta'anit Esther":["תַּעֲנִית אֶסְתֵּר"],"Tish'a B'Av":["תִּשְׁעָה בְּאָב"],"Tu B'Av":["טוּ בְּאָב"],"Tu BiShvat":["טוּ בִּשְׁבָט"],"Tu B'Shvat":["טוּ בִּשְׁבָט"],"Tzom Gedaliah":["צוֹם גְּדַלְיָה"],"Tzom Tammuz":["צוֹם תָּמוּז"],"Yom HaAtzma'ut":["יוֹם הָעַצְמָאוּת"],"Yom HaShoah":["יוֹם הַשּׁוֹאָה"],"Yom HaZikaron":["יוֹם הַזִּכָּרוֹן"],"Yom Kippur":["יוֹם כִּפּוּר"],"Yom Yerushalayim":["יוֹם יְרוּשָׁלַיִם"],"Yom HaAliyah":["יוֹם הַעֲלִיָּה"],"Yom HaAliyah School Observance":["שְׁמִירָת בֵּית הַסֵפֶר לְיוֹם הַעֲלִיָּה"],"Pesach I (on Shabbat)":["פֶּסַח יוֹם א׳ (בְּשַׁבָּת)"],"Pesach Chol ha-Moed Day 1":["פֶּסַח חוֹל הַמּוֹעֵד יוֹם א׳"],"Pesach Chol ha-Moed Day 2":["פֶּסַח חוֹל הַמּוֹעֵד יוֹם ב׳"],"Pesach Chol ha-Moed Day 3":["פֶּסַח חוֹל הַמּוֹעֵד יוֹם ג׳"],"Pesach Chol ha-Moed Day 4":["פֶּסַח חוֹל הַמּוֹעֵד יוֹם ד׳"],"Pesach Chol ha-Moed Day 5":["פֶּסַח חוֹל הַמּוֹעֵד יוֹם ה׳"],"Pesach Shabbat Chol ha-Moed":["פֶּסַח שַׁבָּת חוֹל הַמּוֹעֵד"],"Shavuot II (on Shabbat)":["שָׁבוּעוֹת יוֹם ב׳ (בְּשַׁבָּת)"],"Rosh Hashana I (on Shabbat)":["רֹאשׁ הַשָּׁנָה יוֹם א׳ (בְּשַׁבָּת)"],"Yom Kippur (on Shabbat)":["יוֹם כִּפּוּר (בְּשַׁבָּת)"],"Yom Kippur (Mincha, Traditional)":["יוֹם כִּפּוּר מנחה"],"Yom Kippur (Mincha, Alternate)":["יוֹם כִּפּוּר מנחה"],"Sukkot I (on Shabbat)":["סוּכּוֹת יוֹם א׳ (בְּשַׁבָּת)"],"Sukkot Chol ha-Moed Day 1":["סוּכּוֹת חוֹל הַמּוֹעֵד יוֹם א׳"],"Sukkot Chol ha-Moed Day 2":["סוּכּוֹת חוֹל הַמּוֹעֵד יוֹם ב׳"],"Sukkot Chol ha-Moed Day 3":["סוּכּוֹת חוֹל הַמּוֹעֵד יוֹם ג׳"],"Sukkot Chol ha-Moed Day 4":["סוּכּוֹת חוֹל הַמּוֹעֵד יוֹם ד׳"],"Sukkot Shabbat Chol ha-Moed":["סוּכּוֹת שַׁבָּת חוֹל הַמּוֹעֵד"],"Sukkot Final Day (Hoshana Raba)":["סוּכּוֹת ז׳ (הוֹשַׁעְנָא רַבָּה)"],"Rosh Chodesh Adar":["רֹאשׁ חוֹדֶשׁ אַדָר"],"Rosh Chodesh Adar I":["רֹאשׁ חוֹדֶשׁ אַדָר א׳"],"Rosh Chodesh Adar II":["רֹאשׁ חוֹדֶשׁ אַדָר ב׳"],"Rosh Chodesh Av":["רֹאשׁ חוֹדֶשׁ אָב"],"Rosh Chodesh Cheshvan":["רֹאשׁ חוֹדֶשׁ חֶשְׁוָן"],"Rosh Chodesh Elul":["רֹאשׁ חוֹדֶשׁ אֱלוּל"],"Rosh Chodesh Iyyar":["רֹאשׁ חוֹדֶשׁ אִיָיר"],"Rosh Chodesh Kislev":["רֹאשׁ חוֹדֶשׁ כִּסְלֵו"],"Rosh Chodesh Nisan":["רֹאשׁ חוֹדֶשׁ נִיסָן"],"Rosh Chodesh Sh'vat":["רֹאשׁ חוֹדֶשׁ שְׁבָט"],"Rosh Chodesh Sivan":["רֹאשׁ חוֹדֶשׁ סִיוָן"],"Rosh Chodesh Tamuz":["רֹאשׁ חוֹדֶשׁ תָּמוּז"],"Rosh Chodesh Tevet":["רֹאשׁ חוֹדֶשׁ טֵבֵת"],min:["דקות"],"Fast begins":["תחילת הַצוֹם"],"Fast ends":["סִיּוּם הַצוֹם"],"Rosh Hashana LaBehemot":["רֹאשׁ הַשָּׁנָה לְמַעְשַׂר בְּהֵמָה"],"Tish'a B'Av (observed)":["תִּשְׁעָה בְּאָב נִדחֶה"],"Shabbat Mevarchim Chodesh":["שַׁבָּת מברכים חוֹדֶשׁ"],"Shabbat Shirah":["שַׁבָּת שִׁירָה"],chatzotNight:["חֲצוֹת הַלַיְלָה"],alotHaShachar:["עֲלוֹת הַשַּׁחַר"],misheyakir:["משיכיר - זמן ציצית ותפילין"],misheyakirMachmir:["משיכיר - זמן ציצית ותפילין"],neitzHaChama:["הַנֵץ הַחַמָּה"],sofZmanShma:["סוֹף זְמַן קְרִיאַת שְׁמַע גר״א"],sofZmanTfilla:["סוֹף זְמַן תְּפִלָּה גר״א"],chatzot:["חֲצוֹת הַיּוֹם"],minchaGedola:["מִנְחָה גְּדוֹלָה"],minchaKetana:["מִנְחָה קְטַנָּה"],plagHaMincha:["פְּלַג הַמִּנְחָה"],shkiah:["שְׁקִיעָה"],"Nightfall - End of ordained fasts":["לַיְלָה - גמר תעניות דרבנן"],tzeit:["צֵאת כוכבים"],Lovingkindness:["חֶֽסֶד"],Might:["גְבוּרָה"],Beauty:["תִּפאֶרֶת"],Eternity:["נֶּֽצַח"],Splendor:["הוֹד"],Foundation:["יְּסוֹד"],Majesty:["מַּלְכוּת"],day:["יוֹם"],"Chanukah Day 1":["חֲנוּכָּה יוֹם א׳"],"Chanukah Day 2":["חֲנוּכָּה יוֹם ב׳"],"Chanukah Day 3":["חֲנוּכָּה יוֹם ג׳"],"Chanukah Day 4":["חֲנוּכָּה יוֹם ד׳"],"Chanukah Day 5":["חֲנוּכָּה יוֹם ה׳"],"Chanukah Day 6":["חֲנוּכָּה יוֹם ו׳"],"Chanukah Day 7":["חֲנוּכָּה יוֹם ז׳"],"Chanukah Day 7 (on Rosh Chodesh)":["חֲנוּכָּה יוֹם ז׳ (רֹאשׁ חוֹדֶשׁ)"],"Chanukah Day 8":["חֲנוּכָּה יוֹם ח׳"],Berakhot:["ברכות"],Peah:["פאה"],Demai:["דמאי"],Kilayim:["כלאים"],Sheviit:["שביעית"],Terumot:["תרומות"],Maasrot:["מעשרות"],"Maaser Sheni":["מעשר שני"],Challah:["חלה"],Orlah:["ערלה"],Bikkurim:["ביכורים"],"Rosh Hashanah":["ראש השנה"],Gittin:["גיטין"],"Bava Kamma":["בבא קמא"],"Bava Metzia":["בבא מציעא"],"Bava Batra":["בבא בתרא"],Eduyot:["עדיות"],Avot:["אבות"],Bekhorot:["בכורות"],Arakhin:["ערכין"],Middot:["מדות"],Kelim:["כלים"],Oholot:["אהלות"],Negaim:["נגעים"],Parah:["פרה"],Tahorot:["טהרות"],Mikvaot:["מקואות"],Makhshirin:["מכשירין"],Zavim:["זבים"],"Tevul Yom":["טבול יום"],Yadayim:["ידים"],Oktzin:["עוקצים"]}};var poHe = {headers:headers,contexts:contexts};
|
|
4735
4905
|
|
|
4736
4906
|
Locale.addLocale('he', poHe);
|
|
4737
4907
|
Locale.addLocale('h', poHe);
|
|
@@ -4827,6 +4997,7 @@ const RECOGNIZED_OPTIONS = {
|
|
|
4827
4997
|
noSpecialShabbat: 1,
|
|
4828
4998
|
noHolidays: 1,
|
|
4829
4999
|
dafyomi: 1,
|
|
5000
|
+
mishnaYomi: 1,
|
|
4830
5001
|
omer: 1,
|
|
4831
5002
|
molad: 1,
|
|
4832
5003
|
ashkenazi: 1,
|
|
@@ -4927,6 +5098,7 @@ function checkCandleOptions(options) {
|
|
|
4927
5098
|
* @property {boolean} noSpecialShabbat - suppress Special Shabbat
|
|
4928
5099
|
* @property {boolean} noHolidays - suppress regular holidays
|
|
4929
5100
|
* @property {boolean} dafyomi - include Daf Yomi
|
|
5101
|
+
* @property {boolean} mishnaYomi - include Mishna Yomi
|
|
4930
5102
|
* @property {boolean} omer - include Days of the Omer
|
|
4931
5103
|
* @property {boolean} molad - include event announcing the molad
|
|
4932
5104
|
* @property {boolean} ashkenazi - use Ashkenazi transliterations for event titles (default Sephardi transliterations)
|
|
@@ -4950,7 +5122,7 @@ function checkCandleOptions(options) {
|
|
|
4950
5122
|
function getAbs(d) {
|
|
4951
5123
|
if (typeof d == 'number') return d;
|
|
4952
5124
|
if (greg.isDate(d)) return greg.greg2abs(d);
|
|
4953
|
-
if (HDate
|
|
5125
|
+
if (HDate.isHDate(d)) return d.abs();
|
|
4954
5126
|
throw new TypeError(`Invalid date type: ${d}`);
|
|
4955
5127
|
}
|
|
4956
5128
|
/**
|
|
@@ -4969,7 +5141,7 @@ function getStartAndEnd(options) {
|
|
|
4969
5141
|
}
|
|
4970
5142
|
|
|
4971
5143
|
const isHebrewYear = Boolean(options.isHebrewYear);
|
|
4972
|
-
const theYear = typeof options.year !== 'undefined' ? parseInt(options.year, 10) : isHebrewYear ? new HDate
|
|
5144
|
+
const theYear = typeof options.year !== 'undefined' ? parseInt(options.year, 10) : isHebrewYear ? new HDate().getFullYear() : new Date().getFullYear();
|
|
4973
5145
|
|
|
4974
5146
|
if (isNaN(theYear)) {
|
|
4975
5147
|
throw new RangeError(`Invalid year ${options.year}`);
|
|
@@ -4983,7 +5155,7 @@ function getStartAndEnd(options) {
|
|
|
4983
5155
|
|
|
4984
5156
|
if (options.month) {
|
|
4985
5157
|
if (isHebrewYear) {
|
|
4986
|
-
theMonth = HDate
|
|
5158
|
+
theMonth = HDate.monthNum(options.month);
|
|
4987
5159
|
} else {
|
|
4988
5160
|
theMonth = options.month;
|
|
4989
5161
|
}
|
|
@@ -4992,9 +5164,9 @@ function getStartAndEnd(options) {
|
|
|
4992
5164
|
const numYears = parseInt(options.numYears, 10) || 1;
|
|
4993
5165
|
|
|
4994
5166
|
if (isHebrewYear) {
|
|
4995
|
-
const startDate = new HDate
|
|
5167
|
+
const startDate = new HDate(1, theMonth || TISHREI, theYear);
|
|
4996
5168
|
let startAbs = startDate.abs();
|
|
4997
|
-
const endAbs = options.month ? startAbs + startDate.daysInMonth() : new HDate
|
|
5169
|
+
const endAbs = options.month ? startAbs + startDate.daysInMonth() : new HDate(1, TISHREI, theYear + numYears).abs() - 1; // for full Hebrew year, start on Erev Rosh Hashana which
|
|
4998
5170
|
// is technically in the previous Hebrew year
|
|
4999
5171
|
// (but conveniently lets us get candle-lighting time for Erev)
|
|
5000
5172
|
|
|
@@ -5048,6 +5220,7 @@ function getMaskFromOptions(options) {
|
|
|
5048
5220
|
if (m & DAF_YOMI) options.dafyomi = true;
|
|
5049
5221
|
if (m & OMER_COUNT) options.omer = true;
|
|
5050
5222
|
if (m & SHABBAT_MEVARCHIM) options.shabbatMevarchim = true;
|
|
5223
|
+
if (m & flags.MISHNA_YOMI) options.mishnaYomi = true;
|
|
5051
5224
|
options.userMask = true;
|
|
5052
5225
|
return m;
|
|
5053
5226
|
}
|
|
@@ -5096,6 +5269,10 @@ function getMaskFromOptions(options) {
|
|
|
5096
5269
|
mask |= DAF_YOMI;
|
|
5097
5270
|
}
|
|
5098
5271
|
|
|
5272
|
+
if (options.mishnaYomi) {
|
|
5273
|
+
mask |= flags.MISHNA_YOMI;
|
|
5274
|
+
}
|
|
5275
|
+
|
|
5099
5276
|
if (options.omer) {
|
|
5100
5277
|
mask |= OMER_COUNT;
|
|
5101
5278
|
}
|
|
@@ -5109,6 +5286,7 @@ function getMaskFromOptions(options) {
|
|
|
5109
5286
|
|
|
5110
5287
|
const MASK_LIGHT_CANDLES = LIGHT_CANDLES | LIGHT_CANDLES_TZEIS | CHANUKAH_CANDLES | YOM_TOV_ENDS;
|
|
5111
5288
|
/**
|
|
5289
|
+
* @namespace
|
|
5112
5290
|
* HebrewCalendar is the main interface to the `@hebcal/core` library.
|
|
5113
5291
|
* This namespace is used to calculate holidays, rosh chodesh, candle lighting & havdalah times,
|
|
5114
5292
|
* Parashat HaShavua, Daf Yomi, days of the omer, and the molad.
|
|
@@ -5151,6 +5329,7 @@ const HebrewCalendar = {
|
|
|
5151
5329
|
* * Parashat HaShavua - weekly Torah Reading on Saturdays (`options.sedrot`)
|
|
5152
5330
|
* * Counting of the Omer (`options.omer`)
|
|
5153
5331
|
* * Daf Yomi (`options.dafyomi`)
|
|
5332
|
+
* * Mishna Yomi (`options.mishnaYomi`)
|
|
5154
5333
|
* * Shabbat Mevarchim HaChodesh on Saturday before Rosh Chodesh (`options.shabbatMevarchim`)
|
|
5155
5334
|
* * Molad announcement on Saturday before Rosh Chodesh (`options.molad`)
|
|
5156
5335
|
*
|
|
@@ -5257,8 +5436,14 @@ const HebrewCalendar = {
|
|
|
5257
5436
|
options.candlelighting = false;
|
|
5258
5437
|
}
|
|
5259
5438
|
|
|
5439
|
+
let mishnaYomiIndex;
|
|
5440
|
+
|
|
5441
|
+
if (options.mishnaYomi) {
|
|
5442
|
+
mishnaYomiIndex = new MishnaYomiIndex();
|
|
5443
|
+
}
|
|
5444
|
+
|
|
5260
5445
|
for (let abs = startAbs; abs <= endAbs; abs++) {
|
|
5261
|
-
const hd = new HDate
|
|
5446
|
+
const hd = new HDate(abs);
|
|
5262
5447
|
const hyear = hd.getFullYear();
|
|
5263
5448
|
|
|
5264
5449
|
if (hyear != currentYear) {
|
|
@@ -5270,8 +5455,8 @@ const HebrewCalendar = {
|
|
|
5270
5455
|
}
|
|
5271
5456
|
|
|
5272
5457
|
if (options.omer) {
|
|
5273
|
-
beginOmer = HDate
|
|
5274
|
-
endOmer = HDate
|
|
5458
|
+
beginOmer = HDate.hebrew2abs(currentYear, NISAN, 16);
|
|
5459
|
+
endOmer = HDate.hebrew2abs(currentYear, SIVAN, 5);
|
|
5275
5460
|
}
|
|
5276
5461
|
}
|
|
5277
5462
|
|
|
@@ -5295,6 +5480,11 @@ const HebrewCalendar = {
|
|
|
5295
5480
|
evts.push(new DafYomiEvent(hd));
|
|
5296
5481
|
}
|
|
5297
5482
|
|
|
5483
|
+
if (options.mishnaYomi && abs >= mishnaYomiStart) {
|
|
5484
|
+
const mishnaYomi = mishnaYomiIndex.lookup(abs);
|
|
5485
|
+
evts.push(new MishnaYomiEvent(hd, mishnaYomi));
|
|
5486
|
+
}
|
|
5487
|
+
|
|
5298
5488
|
if (options.omer && abs >= beginOmer && abs <= endOmer) {
|
|
5299
5489
|
const omer = abs - beginOmer + 1;
|
|
5300
5490
|
evts.push(new OmerEvent(hd, omer));
|
|
@@ -5303,7 +5493,7 @@ const HebrewCalendar = {
|
|
|
5303
5493
|
const hmonth = hd.getMonth();
|
|
5304
5494
|
|
|
5305
5495
|
if (options.molad && dow == SAT && hmonth != ELUL && hd.getDate() >= 23 && hd.getDate() <= 29) {
|
|
5306
|
-
const monNext = hmonth == HDate
|
|
5496
|
+
const monNext = hmonth == HDate.monthsInYear(hyear) ? NISAN : hmonth + 1;
|
|
5307
5497
|
evts.push(new MoladEvent(hd, hyear, monNext));
|
|
5308
5498
|
}
|
|
5309
5499
|
|
|
@@ -5365,7 +5555,7 @@ const HebrewCalendar = {
|
|
|
5365
5555
|
* @return {HDate} anniversary occurring in `hyear`
|
|
5366
5556
|
*/
|
|
5367
5557
|
getBirthdayOrAnniversary: function (hyear, gdate) {
|
|
5368
|
-
const orig = HDate
|
|
5558
|
+
const orig = HDate.isHDate(gdate) ? gdate : new HDate(gdate);
|
|
5369
5559
|
const origYear = orig.getFullYear();
|
|
5370
5560
|
|
|
5371
5561
|
if (hyear <= origYear) {
|
|
@@ -5373,24 +5563,24 @@ const HebrewCalendar = {
|
|
|
5373
5563
|
return undefined;
|
|
5374
5564
|
}
|
|
5375
5565
|
|
|
5376
|
-
const isOrigLeap = HDate
|
|
5566
|
+
const isOrigLeap = HDate.isLeapYear(origYear);
|
|
5377
5567
|
let month = orig.getMonth();
|
|
5378
5568
|
let day = orig.getDate();
|
|
5379
5569
|
|
|
5380
5570
|
if (month == ADAR_I && !isOrigLeap || month == ADAR_II && isOrigLeap) {
|
|
5381
|
-
month = HDate
|
|
5382
|
-
} else if (month == CHESHVAN && day == 30 && !HDate
|
|
5571
|
+
month = HDate.monthsInYear(hyear);
|
|
5572
|
+
} else if (month == CHESHVAN && day == 30 && !HDate.longCheshvan(hyear)) {
|
|
5383
5573
|
month = KISLEV;
|
|
5384
5574
|
day = 1;
|
|
5385
|
-
} else if (month == KISLEV && day == 30 && HDate
|
|
5575
|
+
} else if (month == KISLEV && day == 30 && HDate.shortKislev(hyear)) {
|
|
5386
5576
|
month = TEVET;
|
|
5387
5577
|
day = 1;
|
|
5388
|
-
} else if (month == ADAR_I && day == 30 && isOrigLeap && !HDate
|
|
5578
|
+
} else if (month == ADAR_I && day == 30 && isOrigLeap && !HDate.isLeapYear(hyear)) {
|
|
5389
5579
|
month = NISAN;
|
|
5390
5580
|
day = 1;
|
|
5391
5581
|
}
|
|
5392
5582
|
|
|
5393
|
-
return new HDate
|
|
5583
|
+
return new HDate(day, month, hyear);
|
|
5394
5584
|
},
|
|
5395
5585
|
|
|
5396
5586
|
/**
|
|
@@ -5428,7 +5618,7 @@ const HebrewCalendar = {
|
|
|
5428
5618
|
* @return {HDate} anniversary occurring in hyear
|
|
5429
5619
|
*/
|
|
5430
5620
|
getYahrzeit: function (hyear, gdate) {
|
|
5431
|
-
const orig = HDate
|
|
5621
|
+
const orig = HDate.isHDate(gdate) ? gdate : new HDate(gdate);
|
|
5432
5622
|
let hDeath = {
|
|
5433
5623
|
yy: orig.getFullYear(),
|
|
5434
5624
|
mm: orig.getMonth(),
|
|
@@ -5440,18 +5630,18 @@ const HebrewCalendar = {
|
|
|
5440
5630
|
return undefined;
|
|
5441
5631
|
}
|
|
5442
5632
|
|
|
5443
|
-
if (hDeath.mm == CHESHVAN && hDeath.dd == 30 && !HDate
|
|
5633
|
+
if (hDeath.mm == CHESHVAN && hDeath.dd == 30 && !HDate.longCheshvan(hDeath.yy + 1)) {
|
|
5444
5634
|
// If it's Heshvan 30 it depends on the first anniversary;
|
|
5445
5635
|
// if that was not Heshvan 30, use the day before Kislev 1.
|
|
5446
|
-
hDeath = HDate
|
|
5447
|
-
} else if (hDeath.mm == KISLEV && hDeath.dd == 30 && HDate
|
|
5636
|
+
hDeath = HDate.abs2hebrew(HDate.hebrew2abs(hyear, KISLEV, 1) - 1);
|
|
5637
|
+
} else if (hDeath.mm == KISLEV && hDeath.dd == 30 && HDate.shortKislev(hDeath.yy + 1)) {
|
|
5448
5638
|
// If it's Kislev 30 it depends on the first anniversary;
|
|
5449
5639
|
// if that was not Kislev 30, use the day before Teveth 1.
|
|
5450
|
-
hDeath = HDate
|
|
5640
|
+
hDeath = HDate.abs2hebrew(HDate.hebrew2abs(hyear, TEVET, 1) - 1);
|
|
5451
5641
|
} else if (hDeath.mm == ADAR_II) {
|
|
5452
5642
|
// If it's Adar II, use the same day in last month of year (Adar or Adar II).
|
|
5453
|
-
hDeath.mm = HDate
|
|
5454
|
-
} else if (hDeath.mm == ADAR_I && hDeath.dd == 30 && !HDate
|
|
5643
|
+
hDeath.mm = HDate.monthsInYear(hyear);
|
|
5644
|
+
} else if (hDeath.mm == ADAR_I && hDeath.dd == 30 && !HDate.isLeapYear(hyear)) {
|
|
5455
5645
|
// If it's the 30th in Adar I and year is not a leap year
|
|
5456
5646
|
// (so Adar has only 29 days), use the last day in Shevat.
|
|
5457
5647
|
hDeath.dd = 30;
|
|
@@ -5460,15 +5650,15 @@ const HebrewCalendar = {
|
|
|
5460
5650
|
// advance day to rosh chodesh if needed
|
|
5461
5651
|
|
|
5462
5652
|
|
|
5463
|
-
if (hDeath.mm == CHESHVAN && hDeath.dd == 30 && !HDate
|
|
5653
|
+
if (hDeath.mm == CHESHVAN && hDeath.dd == 30 && !HDate.longCheshvan(hyear)) {
|
|
5464
5654
|
hDeath.mm = KISLEV;
|
|
5465
5655
|
hDeath.dd = 1;
|
|
5466
|
-
} else if (hDeath.mm == KISLEV && hDeath.dd == 30 && HDate
|
|
5656
|
+
} else if (hDeath.mm == KISLEV && hDeath.dd == 30 && HDate.shortKislev(hyear)) {
|
|
5467
5657
|
hDeath.mm = TEVET;
|
|
5468
5658
|
hDeath.dd = 1;
|
|
5469
5659
|
}
|
|
5470
5660
|
|
|
5471
|
-
return new HDate
|
|
5661
|
+
return new HDate(hDeath.dd, hDeath.mm, hyear);
|
|
5472
5662
|
},
|
|
5473
5663
|
|
|
5474
5664
|
/**
|
|
@@ -5489,12 +5679,12 @@ const HebrewCalendar = {
|
|
|
5489
5679
|
*/
|
|
5490
5680
|
getHolidaysForYearArray: function (year, il) {
|
|
5491
5681
|
const yearMap = HebrewCalendar.getHolidaysForYear(year);
|
|
5492
|
-
const startAbs = HDate
|
|
5493
|
-
const endAbs = HDate
|
|
5682
|
+
const startAbs = HDate.hebrew2abs(year, TISHREI, 1);
|
|
5683
|
+
const endAbs = HDate.hebrew2abs(year + 1, TISHREI, 1) - 1;
|
|
5494
5684
|
const events = [];
|
|
5495
5685
|
|
|
5496
5686
|
for (let absDt = startAbs; absDt <= endAbs; absDt++) {
|
|
5497
|
-
const hd = new HDate
|
|
5687
|
+
const hd = new HDate(absDt);
|
|
5498
5688
|
const holidays = yearMap.get(hd.toString());
|
|
5499
5689
|
|
|
5500
5690
|
if (holidays) {
|
|
@@ -5513,7 +5703,7 @@ const HebrewCalendar = {
|
|
|
5513
5703
|
* @return {Event[]}
|
|
5514
5704
|
*/
|
|
5515
5705
|
getHolidaysOnDate: function (date, il) {
|
|
5516
|
-
const hd = HDate
|
|
5706
|
+
const hd = HDate.isHDate(date) ? date : new HDate(date);
|
|
5517
5707
|
const yearMap = HebrewCalendar.getHolidaysForYear(hd.getFullYear());
|
|
5518
5708
|
const events = yearMap.get(hd.toString());
|
|
5519
5709
|
|
|
@@ -5643,4 +5833,4 @@ function appendHolidayAndRelated(events, ev, options, candlesEv, dow) {
|
|
|
5643
5833
|
return candlesEv;
|
|
5644
5834
|
}
|
|
5645
5835
|
|
|
5646
|
-
export { AsaraBTevetEvent, CandleLightingEvent, DafYomi, DafYomiEvent, Event, HDate
|
|
5836
|
+
export { AsaraBTevetEvent, CandleLightingEvent, DafYomi, DafYomiEvent, Event, HDate, HavdalahEvent, HebrewCalendar, HebrewDateEvent, HolidayEvent, Locale, Location, MevarchimChodeshEvent, MishnaYomiEvent, MishnaYomiIndex, Molad, MoladEvent, OmerEvent, ParshaEvent, RoshChodeshEvent, RoshHashanaEvent, Sedra, TimedEvent, Zmanim, flags, gematriya, greg, months, parshiot, version };
|