@hebcal/core 3.36.4 → 3.37.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/dist/bundle.js +243 -88
- 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 +88 -4
- package/dist/index.mjs +88 -4
- package/package.json +8 -6
package/dist/bundle.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @hebcal/core v3.
|
|
1
|
+
/*! @hebcal/core v3.37.2 */
|
|
2
2
|
var hebcal = (function (exports) {
|
|
3
3
|
'use strict';
|
|
4
4
|
|
|
@@ -604,7 +604,7 @@ var global$r =
|
|
|
604
604
|
|
|
605
605
|
var objectGetOwnPropertyDescriptor = {};
|
|
606
606
|
|
|
607
|
-
var fails$
|
|
607
|
+
var fails$c = function (exec) {
|
|
608
608
|
try {
|
|
609
609
|
return !!exec();
|
|
610
610
|
} catch (error) {
|
|
@@ -612,17 +612,17 @@ var fails$b = function (exec) {
|
|
|
612
612
|
}
|
|
613
613
|
};
|
|
614
614
|
|
|
615
|
-
var fails$
|
|
615
|
+
var fails$b = fails$c;
|
|
616
616
|
|
|
617
617
|
// Detect IE8's incomplete defineProperty implementation
|
|
618
|
-
var descriptors = !fails$
|
|
618
|
+
var descriptors = !fails$b(function () {
|
|
619
619
|
// eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
|
|
620
620
|
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
|
|
621
621
|
});
|
|
622
622
|
|
|
623
|
-
var fails$
|
|
623
|
+
var fails$a = fails$c;
|
|
624
624
|
|
|
625
|
-
var functionBindNative = !fails$
|
|
625
|
+
var functionBindNative = !fails$a(function () {
|
|
626
626
|
// eslint-disable-next-line es-x/no-function-prototype-bind -- safe
|
|
627
627
|
var test = (function () { /* empty */ }).bind();
|
|
628
628
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
@@ -667,35 +667,35 @@ var NATIVE_BIND$1 = functionBindNative;
|
|
|
667
667
|
var FunctionPrototype$1 = Function.prototype;
|
|
668
668
|
var bind$2 = FunctionPrototype$1.bind;
|
|
669
669
|
var call$6 = FunctionPrototype$1.call;
|
|
670
|
-
var uncurryThis$
|
|
670
|
+
var uncurryThis$e = NATIVE_BIND$1 && bind$2.bind(call$6, call$6);
|
|
671
671
|
|
|
672
672
|
var functionUncurryThis = NATIVE_BIND$1 ? function (fn) {
|
|
673
|
-
return fn && uncurryThis$
|
|
673
|
+
return fn && uncurryThis$e(fn);
|
|
674
674
|
} : function (fn) {
|
|
675
675
|
return fn && function () {
|
|
676
676
|
return call$6.apply(fn, arguments);
|
|
677
677
|
};
|
|
678
678
|
};
|
|
679
679
|
|
|
680
|
-
var uncurryThis$
|
|
680
|
+
var uncurryThis$d = functionUncurryThis;
|
|
681
681
|
|
|
682
|
-
var toString$
|
|
683
|
-
var stringSlice = uncurryThis$
|
|
682
|
+
var toString$4 = uncurryThis$d({}.toString);
|
|
683
|
+
var stringSlice = uncurryThis$d(''.slice);
|
|
684
684
|
|
|
685
685
|
var classofRaw$1 = function (it) {
|
|
686
|
-
return stringSlice(toString$
|
|
686
|
+
return stringSlice(toString$4(it), 8, -1);
|
|
687
687
|
};
|
|
688
688
|
|
|
689
689
|
var global$q = global$r;
|
|
690
|
-
var uncurryThis$
|
|
691
|
-
var fails$
|
|
690
|
+
var uncurryThis$c = functionUncurryThis;
|
|
691
|
+
var fails$9 = fails$c;
|
|
692
692
|
var classof$4 = classofRaw$1;
|
|
693
693
|
|
|
694
694
|
var Object$4 = global$q.Object;
|
|
695
|
-
var split = uncurryThis$
|
|
695
|
+
var split = uncurryThis$c(''.split);
|
|
696
696
|
|
|
697
697
|
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
|
698
|
-
var indexedObject = fails$
|
|
698
|
+
var indexedObject = fails$9(function () {
|
|
699
699
|
// throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
|
|
700
700
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
701
701
|
return !Object$4('z').propertyIsEnumerable(0);
|
|
@@ -709,17 +709,17 @@ var TypeError$8 = global$p.TypeError;
|
|
|
709
709
|
|
|
710
710
|
// `RequireObjectCoercible` abstract operation
|
|
711
711
|
// https://tc39.es/ecma262/#sec-requireobjectcoercible
|
|
712
|
-
var requireObjectCoercible$
|
|
712
|
+
var requireObjectCoercible$3 = function (it) {
|
|
713
713
|
if (it == undefined) throw TypeError$8("Can't call method on " + it);
|
|
714
714
|
return it;
|
|
715
715
|
};
|
|
716
716
|
|
|
717
717
|
// toObject with fallback for non-array-like ES3 strings
|
|
718
718
|
var IndexedObject = indexedObject;
|
|
719
|
-
var requireObjectCoercible$
|
|
719
|
+
var requireObjectCoercible$2 = requireObjectCoercible$3;
|
|
720
720
|
|
|
721
721
|
var toIndexedObject$3 = function (it) {
|
|
722
|
-
return IndexedObject(requireObjectCoercible$
|
|
722
|
+
return IndexedObject(requireObjectCoercible$2(it));
|
|
723
723
|
};
|
|
724
724
|
|
|
725
725
|
// `IsCallable` abstract operation
|
|
@@ -745,9 +745,9 @@ var getBuiltIn$4 = function (namespace, method) {
|
|
|
745
745
|
return arguments.length < 2 ? aFunction(global$o[namespace]) : global$o[namespace] && global$o[namespace][method];
|
|
746
746
|
};
|
|
747
747
|
|
|
748
|
-
var uncurryThis$
|
|
748
|
+
var uncurryThis$b = functionUncurryThis;
|
|
749
749
|
|
|
750
|
-
var objectIsPrototypeOf = uncurryThis$
|
|
750
|
+
var objectIsPrototypeOf = uncurryThis$b({}.isPrototypeOf);
|
|
751
751
|
|
|
752
752
|
var getBuiltIn$3 = getBuiltIn$4;
|
|
753
753
|
|
|
@@ -784,10 +784,10 @@ var engineV8Version = version$1;
|
|
|
784
784
|
/* eslint-disable es-x/no-symbol -- required for testing */
|
|
785
785
|
|
|
786
786
|
var V8_VERSION = engineV8Version;
|
|
787
|
-
var fails$
|
|
787
|
+
var fails$8 = fails$c;
|
|
788
788
|
|
|
789
789
|
// eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing
|
|
790
|
-
var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$
|
|
790
|
+
var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$8(function () {
|
|
791
791
|
var symbol = Symbol();
|
|
792
792
|
// Chrome 38 Symbol has incorrect toString conversion
|
|
793
793
|
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
|
|
@@ -897,28 +897,28 @@ var store$2 = sharedStore;
|
|
|
897
897
|
(shared$3.exports = function (key, value) {
|
|
898
898
|
return store$2[key] || (store$2[key] = value !== undefined ? value : {});
|
|
899
899
|
})('versions', []).push({
|
|
900
|
-
version: '3.22.
|
|
900
|
+
version: '3.22.5',
|
|
901
901
|
mode: 'global',
|
|
902
902
|
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
|
|
903
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.22.
|
|
903
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.22.5/LICENSE',
|
|
904
904
|
source: 'https://github.com/zloirock/core-js'
|
|
905
905
|
});
|
|
906
906
|
|
|
907
907
|
var global$g = global$r;
|
|
908
|
-
var requireObjectCoercible = requireObjectCoercible$
|
|
908
|
+
var requireObjectCoercible$1 = requireObjectCoercible$3;
|
|
909
909
|
|
|
910
910
|
var Object$2 = global$g.Object;
|
|
911
911
|
|
|
912
912
|
// `ToObject` abstract operation
|
|
913
913
|
// https://tc39.es/ecma262/#sec-toobject
|
|
914
914
|
var toObject$3 = function (argument) {
|
|
915
|
-
return Object$2(requireObjectCoercible(argument));
|
|
915
|
+
return Object$2(requireObjectCoercible$1(argument));
|
|
916
916
|
};
|
|
917
917
|
|
|
918
|
-
var uncurryThis$
|
|
918
|
+
var uncurryThis$a = functionUncurryThis;
|
|
919
919
|
var toObject$2 = toObject$3;
|
|
920
920
|
|
|
921
|
-
var hasOwnProperty = uncurryThis$
|
|
921
|
+
var hasOwnProperty = uncurryThis$a({}.hasOwnProperty);
|
|
922
922
|
|
|
923
923
|
// `HasOwnProperty` abstract operation
|
|
924
924
|
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
@@ -927,14 +927,14 @@ var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
|
|
|
927
927
|
return hasOwnProperty(toObject$2(it), key);
|
|
928
928
|
};
|
|
929
929
|
|
|
930
|
-
var uncurryThis$
|
|
930
|
+
var uncurryThis$9 = functionUncurryThis;
|
|
931
931
|
|
|
932
932
|
var id$1 = 0;
|
|
933
933
|
var postfix = Math.random();
|
|
934
|
-
var toString$
|
|
934
|
+
var toString$3 = uncurryThis$9(1.0.toString);
|
|
935
935
|
|
|
936
936
|
var uid$2 = function (key) {
|
|
937
|
-
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$
|
|
937
|
+
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$3(++id$1 + postfix, 36);
|
|
938
938
|
};
|
|
939
939
|
|
|
940
940
|
var global$f = global$r;
|
|
@@ -1010,19 +1010,19 @@ var documentCreateElement = function (it) {
|
|
|
1010
1010
|
return EXISTS$1 ? document.createElement(it) : {};
|
|
1011
1011
|
};
|
|
1012
1012
|
|
|
1013
|
-
var DESCRIPTORS$
|
|
1014
|
-
var fails$
|
|
1013
|
+
var DESCRIPTORS$6 = descriptors;
|
|
1014
|
+
var fails$7 = fails$c;
|
|
1015
1015
|
var createElement = documentCreateElement;
|
|
1016
1016
|
|
|
1017
1017
|
// Thanks to IE8 for its funny defineProperty
|
|
1018
|
-
var ie8DomDefine = !DESCRIPTORS$
|
|
1018
|
+
var ie8DomDefine = !DESCRIPTORS$6 && !fails$7(function () {
|
|
1019
1019
|
// eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
|
|
1020
1020
|
return Object.defineProperty(createElement('div'), 'a', {
|
|
1021
1021
|
get: function () { return 7; }
|
|
1022
1022
|
}).a != 7;
|
|
1023
1023
|
});
|
|
1024
1024
|
|
|
1025
|
-
var DESCRIPTORS$
|
|
1025
|
+
var DESCRIPTORS$5 = descriptors;
|
|
1026
1026
|
var call$3 = functionCall;
|
|
1027
1027
|
var propertyIsEnumerableModule = objectPropertyIsEnumerable;
|
|
1028
1028
|
var createPropertyDescriptor$2 = createPropertyDescriptor$3;
|
|
@@ -1036,7 +1036,7 @@ var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
|
|
|
1036
1036
|
|
|
1037
1037
|
// `Object.getOwnPropertyDescriptor` method
|
|
1038
1038
|
// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
|
|
1039
|
-
objectGetOwnPropertyDescriptor.f = DESCRIPTORS$
|
|
1039
|
+
objectGetOwnPropertyDescriptor.f = DESCRIPTORS$5 ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
|
|
1040
1040
|
O = toIndexedObject$2(O);
|
|
1041
1041
|
P = toPropertyKey$2(P);
|
|
1042
1042
|
if (IE8_DOM_DEFINE$1) try {
|
|
@@ -1047,12 +1047,12 @@ objectGetOwnPropertyDescriptor.f = DESCRIPTORS$4 ? $getOwnPropertyDescriptor$1 :
|
|
|
1047
1047
|
|
|
1048
1048
|
var objectDefineProperty = {};
|
|
1049
1049
|
|
|
1050
|
-
var DESCRIPTORS$
|
|
1051
|
-
var fails$
|
|
1050
|
+
var DESCRIPTORS$4 = descriptors;
|
|
1051
|
+
var fails$6 = fails$c;
|
|
1052
1052
|
|
|
1053
1053
|
// V8 ~ Chrome 36-
|
|
1054
1054
|
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
1055
|
-
var v8PrototypeDefineBug = DESCRIPTORS$
|
|
1055
|
+
var v8PrototypeDefineBug = DESCRIPTORS$4 && fails$6(function () {
|
|
1056
1056
|
// eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
|
|
1057
1057
|
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
|
1058
1058
|
value: 42,
|
|
@@ -1073,7 +1073,7 @@ var anObject$5 = function (argument) {
|
|
|
1073
1073
|
};
|
|
1074
1074
|
|
|
1075
1075
|
var global$b = global$r;
|
|
1076
|
-
var DESCRIPTORS$
|
|
1076
|
+
var DESCRIPTORS$3 = descriptors;
|
|
1077
1077
|
var IE8_DOM_DEFINE = ie8DomDefine;
|
|
1078
1078
|
var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
|
|
1079
1079
|
var anObject$4 = anObject$5;
|
|
@@ -1090,7 +1090,7 @@ var WRITABLE = 'writable';
|
|
|
1090
1090
|
|
|
1091
1091
|
// `Object.defineProperty` method
|
|
1092
1092
|
// https://tc39.es/ecma262/#sec-object.defineproperty
|
|
1093
|
-
objectDefineProperty.f = DESCRIPTORS$
|
|
1093
|
+
objectDefineProperty.f = DESCRIPTORS$3 ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
|
|
1094
1094
|
anObject$4(O);
|
|
1095
1095
|
P = toPropertyKey$1(P);
|
|
1096
1096
|
anObject$4(Attributes);
|
|
@@ -1117,11 +1117,11 @@ objectDefineProperty.f = DESCRIPTORS$2 ? V8_PROTOTYPE_DEFINE_BUG ? function defi
|
|
|
1117
1117
|
return O;
|
|
1118
1118
|
};
|
|
1119
1119
|
|
|
1120
|
-
var DESCRIPTORS$
|
|
1120
|
+
var DESCRIPTORS$2 = descriptors;
|
|
1121
1121
|
var definePropertyModule$2 = objectDefineProperty;
|
|
1122
1122
|
var createPropertyDescriptor$1 = createPropertyDescriptor$3;
|
|
1123
1123
|
|
|
1124
|
-
var createNonEnumerableProperty$3 = DESCRIPTORS$
|
|
1124
|
+
var createNonEnumerableProperty$3 = DESCRIPTORS$2 ? function (object, key, value) {
|
|
1125
1125
|
return definePropertyModule$2.f(object, key, createPropertyDescriptor$1(1, value));
|
|
1126
1126
|
} : function (object, key, value) {
|
|
1127
1127
|
object[key] = value;
|
|
@@ -1130,17 +1130,17 @@ var createNonEnumerableProperty$3 = DESCRIPTORS$1 ? function (object, key, value
|
|
|
1130
1130
|
|
|
1131
1131
|
var makeBuiltIn$2 = {exports: {}};
|
|
1132
1132
|
|
|
1133
|
-
var DESCRIPTORS = descriptors;
|
|
1133
|
+
var DESCRIPTORS$1 = descriptors;
|
|
1134
1134
|
var hasOwn$4 = hasOwnProperty_1;
|
|
1135
1135
|
|
|
1136
1136
|
var FunctionPrototype = Function.prototype;
|
|
1137
1137
|
// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
|
|
1138
|
-
var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
|
|
1138
|
+
var getDescriptor = DESCRIPTORS$1 && Object.getOwnPropertyDescriptor;
|
|
1139
1139
|
|
|
1140
1140
|
var EXISTS = hasOwn$4(FunctionPrototype, 'name');
|
|
1141
1141
|
// additional protection from minified / mangled / dropped function names
|
|
1142
1142
|
var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
|
|
1143
|
-
var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
|
|
1143
|
+
var CONFIGURABLE = EXISTS && (!DESCRIPTORS$1 || (DESCRIPTORS$1 && getDescriptor(FunctionPrototype, 'name').configurable));
|
|
1144
1144
|
|
|
1145
1145
|
var functionName = {
|
|
1146
1146
|
EXISTS: EXISTS,
|
|
@@ -1148,11 +1148,11 @@ var functionName = {
|
|
|
1148
1148
|
CONFIGURABLE: CONFIGURABLE
|
|
1149
1149
|
};
|
|
1150
1150
|
|
|
1151
|
-
var uncurryThis$
|
|
1151
|
+
var uncurryThis$8 = functionUncurryThis;
|
|
1152
1152
|
var isCallable$6 = isCallable$c;
|
|
1153
1153
|
var store$1 = sharedStore;
|
|
1154
1154
|
|
|
1155
|
-
var functionToString = uncurryThis$
|
|
1155
|
+
var functionToString = uncurryThis$8(Function.toString);
|
|
1156
1156
|
|
|
1157
1157
|
// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
|
|
1158
1158
|
if (!isCallable$6(store$1.inspectSource)) {
|
|
@@ -1184,7 +1184,7 @@ var hiddenKeys$3 = {};
|
|
|
1184
1184
|
|
|
1185
1185
|
var NATIVE_WEAK_MAP = nativeWeakMap;
|
|
1186
1186
|
var global$9 = global$r;
|
|
1187
|
-
var uncurryThis$
|
|
1187
|
+
var uncurryThis$7 = functionUncurryThis;
|
|
1188
1188
|
var isObject = isObject$5;
|
|
1189
1189
|
var createNonEnumerableProperty$2 = createNonEnumerableProperty$3;
|
|
1190
1190
|
var hasOwn$3 = hasOwnProperty_1;
|
|
@@ -1212,9 +1212,9 @@ var getterFor = function (TYPE) {
|
|
|
1212
1212
|
|
|
1213
1213
|
if (NATIVE_WEAK_MAP || shared.state) {
|
|
1214
1214
|
var store = shared.state || (shared.state = new WeakMap());
|
|
1215
|
-
var wmget = uncurryThis$
|
|
1216
|
-
var wmhas = uncurryThis$
|
|
1217
|
-
var wmset = uncurryThis$
|
|
1215
|
+
var wmget = uncurryThis$7(store.get);
|
|
1216
|
+
var wmhas = uncurryThis$7(store.has);
|
|
1217
|
+
var wmset = uncurryThis$7(store.set);
|
|
1218
1218
|
set = function (it, metadata) {
|
|
1219
1219
|
if (wmhas(store, it)) throw new TypeError$2(OBJECT_ALREADY_INITIALIZED);
|
|
1220
1220
|
metadata.facade = it;
|
|
@@ -1252,18 +1252,20 @@ var internalState = {
|
|
|
1252
1252
|
getterFor: getterFor
|
|
1253
1253
|
};
|
|
1254
1254
|
|
|
1255
|
-
var fails$
|
|
1255
|
+
var fails$5 = fails$c;
|
|
1256
1256
|
var isCallable$4 = isCallable$c;
|
|
1257
1257
|
var hasOwn$2 = hasOwnProperty_1;
|
|
1258
|
-
var
|
|
1258
|
+
var DESCRIPTORS = descriptors;
|
|
1259
1259
|
var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
|
|
1260
1260
|
var inspectSource$1 = inspectSource$3;
|
|
1261
1261
|
var InternalStateModule = internalState;
|
|
1262
1262
|
|
|
1263
1263
|
var enforceInternalState = InternalStateModule.enforce;
|
|
1264
1264
|
var getInternalState = InternalStateModule.get;
|
|
1265
|
+
// eslint-disable-next-line es-x/no-object-defineproperty -- safe
|
|
1266
|
+
var defineProperty = Object.defineProperty;
|
|
1265
1267
|
|
|
1266
|
-
var CONFIGURABLE_LENGTH = !fails$
|
|
1268
|
+
var CONFIGURABLE_LENGTH = DESCRIPTORS && !fails$5(function () {
|
|
1267
1269
|
return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
|
|
1268
1270
|
});
|
|
1269
1271
|
|
|
@@ -1281,6 +1283,11 @@ var makeBuiltIn$1 = makeBuiltIn$2.exports = function (value, name, options) {
|
|
|
1281
1283
|
if (CONFIGURABLE_LENGTH && options && hasOwn$2(options, 'arity') && value.length !== options.arity) {
|
|
1282
1284
|
defineProperty(value, 'length', { value: options.arity });
|
|
1283
1285
|
}
|
|
1286
|
+
if (options && hasOwn$2(options, 'constructor') && options.constructor) {
|
|
1287
|
+
if (DESCRIPTORS) try {
|
|
1288
|
+
defineProperty(value, 'prototype', { writable: false });
|
|
1289
|
+
} catch (error) { /* empty */ }
|
|
1290
|
+
} else value.prototype = undefined;
|
|
1284
1291
|
var state = enforceInternalState(value);
|
|
1285
1292
|
if (!hasOwn$2(state, 'source')) {
|
|
1286
1293
|
state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
|
|
@@ -1368,7 +1375,7 @@ var toAbsoluteIndex$2 = toAbsoluteIndex$3;
|
|
|
1368
1375
|
var lengthOfArrayLike$3 = lengthOfArrayLike$4;
|
|
1369
1376
|
|
|
1370
1377
|
// `Array.prototype.{ indexOf, includes }` methods implementation
|
|
1371
|
-
var createMethod = function (IS_INCLUDES) {
|
|
1378
|
+
var createMethod$1 = function (IS_INCLUDES) {
|
|
1372
1379
|
return function ($this, el, fromIndex) {
|
|
1373
1380
|
var O = toIndexedObject$1($this);
|
|
1374
1381
|
var length = lengthOfArrayLike$3(O);
|
|
@@ -1390,19 +1397,19 @@ var createMethod = function (IS_INCLUDES) {
|
|
|
1390
1397
|
var arrayIncludes = {
|
|
1391
1398
|
// `Array.prototype.includes` method
|
|
1392
1399
|
// https://tc39.es/ecma262/#sec-array.prototype.includes
|
|
1393
|
-
includes: createMethod(true),
|
|
1400
|
+
includes: createMethod$1(true),
|
|
1394
1401
|
// `Array.prototype.indexOf` method
|
|
1395
1402
|
// https://tc39.es/ecma262/#sec-array.prototype.indexof
|
|
1396
|
-
indexOf: createMethod(false)
|
|
1403
|
+
indexOf: createMethod$1(false)
|
|
1397
1404
|
};
|
|
1398
1405
|
|
|
1399
|
-
var uncurryThis$
|
|
1406
|
+
var uncurryThis$6 = functionUncurryThis;
|
|
1400
1407
|
var hasOwn$1 = hasOwnProperty_1;
|
|
1401
1408
|
var toIndexedObject = toIndexedObject$3;
|
|
1402
1409
|
var indexOf = arrayIncludes.indexOf;
|
|
1403
1410
|
var hiddenKeys$1 = hiddenKeys$3;
|
|
1404
1411
|
|
|
1405
|
-
var push$1 = uncurryThis$
|
|
1412
|
+
var push$1 = uncurryThis$6([].push);
|
|
1406
1413
|
|
|
1407
1414
|
var objectKeysInternal = function (object, names) {
|
|
1408
1415
|
var O = toIndexedObject(object);
|
|
@@ -1446,12 +1453,12 @@ var objectGetOwnPropertySymbols = {};
|
|
|
1446
1453
|
objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
|
|
1447
1454
|
|
|
1448
1455
|
var getBuiltIn$1 = getBuiltIn$4;
|
|
1449
|
-
var uncurryThis$
|
|
1456
|
+
var uncurryThis$5 = functionUncurryThis;
|
|
1450
1457
|
var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
|
|
1451
1458
|
var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
|
|
1452
1459
|
var anObject$3 = anObject$5;
|
|
1453
1460
|
|
|
1454
|
-
var concat = uncurryThis$
|
|
1461
|
+
var concat = uncurryThis$5([].concat);
|
|
1455
1462
|
|
|
1456
1463
|
// all object keys, includes non-enumerable and symbols
|
|
1457
1464
|
var ownKeys$1 = getBuiltIn$1('Reflect', 'ownKeys') || function ownKeys(it) {
|
|
@@ -1477,7 +1484,7 @@ var copyConstructorProperties$1 = function (target, source, exceptions) {
|
|
|
1477
1484
|
}
|
|
1478
1485
|
};
|
|
1479
1486
|
|
|
1480
|
-
var fails$
|
|
1487
|
+
var fails$4 = fails$c;
|
|
1481
1488
|
var isCallable$2 = isCallable$c;
|
|
1482
1489
|
|
|
1483
1490
|
var replacement = /#|\.prototype\./;
|
|
@@ -1486,7 +1493,7 @@ var isForced$1 = function (feature, detection) {
|
|
|
1486
1493
|
var value = data[normalize(feature)];
|
|
1487
1494
|
return value == POLYFILL ? true
|
|
1488
1495
|
: value == NATIVE ? false
|
|
1489
|
-
: isCallable$2(detection) ? fails$
|
|
1496
|
+
: isCallable$2(detection) ? fails$4(detection)
|
|
1490
1497
|
: !!detection;
|
|
1491
1498
|
};
|
|
1492
1499
|
|
|
@@ -1600,7 +1607,7 @@ var classof$2 = classof$3;
|
|
|
1600
1607
|
|
|
1601
1608
|
var String$1 = global$5.String;
|
|
1602
1609
|
|
|
1603
|
-
var toString$
|
|
1610
|
+
var toString$2 = function (argument) {
|
|
1604
1611
|
if (classof$2(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
|
|
1605
1612
|
return String$1(argument);
|
|
1606
1613
|
};
|
|
@@ -1678,11 +1685,11 @@ var merge = function (array, left, right, comparefn) {
|
|
|
1678
1685
|
|
|
1679
1686
|
var arraySort = mergeSort;
|
|
1680
1687
|
|
|
1681
|
-
var fails$
|
|
1688
|
+
var fails$3 = fails$c;
|
|
1682
1689
|
|
|
1683
1690
|
var arrayMethodIsStrict$1 = function (METHOD_NAME, argument) {
|
|
1684
1691
|
var method = [][METHOD_NAME];
|
|
1685
|
-
return !!method && fails$
|
|
1692
|
+
return !!method && fails$3(function () {
|
|
1686
1693
|
// eslint-disable-next-line no-useless-call -- required for testing
|
|
1687
1694
|
method.call(null, argument || function () { return 1; }, 1);
|
|
1688
1695
|
});
|
|
@@ -1704,13 +1711,13 @@ var webkit = userAgent.match(/AppleWebKit\/(\d+)\./);
|
|
|
1704
1711
|
|
|
1705
1712
|
var engineWebkitVersion = !!webkit && +webkit[1];
|
|
1706
1713
|
|
|
1707
|
-
var $$
|
|
1708
|
-
var uncurryThis$
|
|
1714
|
+
var $$3 = _export;
|
|
1715
|
+
var uncurryThis$4 = functionUncurryThis;
|
|
1709
1716
|
var aCallable$2 = aCallable$4;
|
|
1710
1717
|
var toObject$1 = toObject$3;
|
|
1711
1718
|
var lengthOfArrayLike$1 = lengthOfArrayLike$4;
|
|
1712
|
-
var toString = toString$
|
|
1713
|
-
var fails$
|
|
1719
|
+
var toString$1 = toString$2;
|
|
1720
|
+
var fails$2 = fails$c;
|
|
1714
1721
|
var internalSort = arraySort;
|
|
1715
1722
|
var arrayMethodIsStrict = arrayMethodIsStrict$1;
|
|
1716
1723
|
var FF = engineFfVersion;
|
|
@@ -1719,21 +1726,21 @@ var V8 = engineV8Version;
|
|
|
1719
1726
|
var WEBKIT = engineWebkitVersion;
|
|
1720
1727
|
|
|
1721
1728
|
var test = [];
|
|
1722
|
-
var un$Sort = uncurryThis$
|
|
1723
|
-
var push = uncurryThis$
|
|
1729
|
+
var un$Sort = uncurryThis$4(test.sort);
|
|
1730
|
+
var push = uncurryThis$4(test.push);
|
|
1724
1731
|
|
|
1725
1732
|
// IE8-
|
|
1726
|
-
var FAILS_ON_UNDEFINED = fails$
|
|
1733
|
+
var FAILS_ON_UNDEFINED = fails$2(function () {
|
|
1727
1734
|
test.sort(undefined);
|
|
1728
1735
|
});
|
|
1729
1736
|
// V8 bug
|
|
1730
|
-
var FAILS_ON_NULL = fails$
|
|
1737
|
+
var FAILS_ON_NULL = fails$2(function () {
|
|
1731
1738
|
test.sort(null);
|
|
1732
1739
|
});
|
|
1733
1740
|
// Old WebKit
|
|
1734
1741
|
var STRICT_METHOD = arrayMethodIsStrict('sort');
|
|
1735
1742
|
|
|
1736
|
-
var STABLE_SORT = !fails$
|
|
1743
|
+
var STABLE_SORT = !fails$2(function () {
|
|
1737
1744
|
// feature detection can be too slow, so check engines versions
|
|
1738
1745
|
if (V8) return V8 < 70;
|
|
1739
1746
|
if (FF && FF > 3) return;
|
|
@@ -1775,13 +1782,13 @@ var getSortCompare = function (comparefn) {
|
|
|
1775
1782
|
if (y === undefined) return -1;
|
|
1776
1783
|
if (x === undefined) return 1;
|
|
1777
1784
|
if (comparefn !== undefined) return +comparefn(x, y) || 0;
|
|
1778
|
-
return toString(x) > toString(y) ? 1 : -1;
|
|
1785
|
+
return toString$1(x) > toString$1(y) ? 1 : -1;
|
|
1779
1786
|
};
|
|
1780
1787
|
};
|
|
1781
1788
|
|
|
1782
1789
|
// `Array.prototype.sort` method
|
|
1783
1790
|
// https://tc39.es/ecma262/#sec-array.prototype.sort
|
|
1784
|
-
$$
|
|
1791
|
+
$$3({ target: 'Array', proto: true, forced: FORCED }, {
|
|
1785
1792
|
sort: function sort(comparefn) {
|
|
1786
1793
|
if (comparefn !== undefined) aCallable$2(comparefn);
|
|
1787
1794
|
|
|
@@ -5273,23 +5280,23 @@ var MoladEvent = /*#__PURE__*/function (_Event) {
|
|
|
5273
5280
|
return MoladEvent;
|
|
5274
5281
|
}(Event);
|
|
5275
5282
|
|
|
5276
|
-
var $$
|
|
5283
|
+
var $$2 = _export;
|
|
5277
5284
|
var global$3 = global$r;
|
|
5278
|
-
var uncurryThis$
|
|
5285
|
+
var uncurryThis$3 = functionUncurryThis;
|
|
5279
5286
|
var toAbsoluteIndex = toAbsoluteIndex$3;
|
|
5280
5287
|
|
|
5281
5288
|
var RangeError$1 = global$3.RangeError;
|
|
5282
5289
|
var fromCharCode = String.fromCharCode;
|
|
5283
5290
|
// eslint-disable-next-line es-x/no-string-fromcodepoint -- required for testing
|
|
5284
5291
|
var $fromCodePoint = String.fromCodePoint;
|
|
5285
|
-
var join = uncurryThis$
|
|
5292
|
+
var join = uncurryThis$3([].join);
|
|
5286
5293
|
|
|
5287
5294
|
// length should be 1, old FF problem
|
|
5288
5295
|
var INCORRECT_LENGTH = !!$fromCodePoint && $fromCodePoint.length != 1;
|
|
5289
5296
|
|
|
5290
5297
|
// `String.fromCodePoint` method
|
|
5291
5298
|
// https://tc39.es/ecma262/#sec-string.fromcodepoint
|
|
5292
|
-
$$
|
|
5299
|
+
$$2({ target: 'String', stat: true, arity: 1, forced: INCORRECT_LENGTH }, {
|
|
5293
5300
|
// eslint-disable-next-line no-unused-vars -- required for `.length`
|
|
5294
5301
|
fromCodePoint: function fromCodePoint(x) {
|
|
5295
5302
|
var elements = [];
|
|
@@ -5306,6 +5313,70 @@ $$1({ target: 'String', stat: true, arity: 1, forced: INCORRECT_LENGTH }, {
|
|
|
5306
5313
|
}
|
|
5307
5314
|
});
|
|
5308
5315
|
|
|
5316
|
+
// a string of all valid unicode whitespaces
|
|
5317
|
+
var whitespaces$2 = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' +
|
|
5318
|
+
'\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
|
|
5319
|
+
|
|
5320
|
+
var uncurryThis$2 = functionUncurryThis;
|
|
5321
|
+
var requireObjectCoercible = requireObjectCoercible$3;
|
|
5322
|
+
var toString = toString$2;
|
|
5323
|
+
var whitespaces$1 = whitespaces$2;
|
|
5324
|
+
|
|
5325
|
+
var replace = uncurryThis$2(''.replace);
|
|
5326
|
+
var whitespace = '[' + whitespaces$1 + ']';
|
|
5327
|
+
var ltrim = RegExp('^' + whitespace + whitespace + '*');
|
|
5328
|
+
var rtrim = RegExp(whitespace + whitespace + '*$');
|
|
5329
|
+
|
|
5330
|
+
// `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation
|
|
5331
|
+
var createMethod = function (TYPE) {
|
|
5332
|
+
return function ($this) {
|
|
5333
|
+
var string = toString(requireObjectCoercible($this));
|
|
5334
|
+
if (TYPE & 1) string = replace(string, ltrim, '');
|
|
5335
|
+
if (TYPE & 2) string = replace(string, rtrim, '');
|
|
5336
|
+
return string;
|
|
5337
|
+
};
|
|
5338
|
+
};
|
|
5339
|
+
|
|
5340
|
+
var stringTrim = {
|
|
5341
|
+
// `String.prototype.{ trimLeft, trimStart }` methods
|
|
5342
|
+
// https://tc39.es/ecma262/#sec-string.prototype.trimstart
|
|
5343
|
+
start: createMethod(1),
|
|
5344
|
+
// `String.prototype.{ trimRight, trimEnd }` methods
|
|
5345
|
+
// https://tc39.es/ecma262/#sec-string.prototype.trimend
|
|
5346
|
+
end: createMethod(2),
|
|
5347
|
+
// `String.prototype.trim` method
|
|
5348
|
+
// https://tc39.es/ecma262/#sec-string.prototype.trim
|
|
5349
|
+
trim: createMethod(3)
|
|
5350
|
+
};
|
|
5351
|
+
|
|
5352
|
+
var PROPER_FUNCTION_NAME = functionName.PROPER;
|
|
5353
|
+
var fails$1 = fails$c;
|
|
5354
|
+
var whitespaces = whitespaces$2;
|
|
5355
|
+
|
|
5356
|
+
var non = '\u200B\u0085\u180E';
|
|
5357
|
+
|
|
5358
|
+
// check that a method works with the correct list
|
|
5359
|
+
// of whitespaces and has a correct name
|
|
5360
|
+
var stringTrimForced = function (METHOD_NAME) {
|
|
5361
|
+
return fails$1(function () {
|
|
5362
|
+
return !!whitespaces[METHOD_NAME]()
|
|
5363
|
+
|| non[METHOD_NAME]() !== non
|
|
5364
|
+
|| (PROPER_FUNCTION_NAME && whitespaces[METHOD_NAME].name !== METHOD_NAME);
|
|
5365
|
+
});
|
|
5366
|
+
};
|
|
5367
|
+
|
|
5368
|
+
var $$1 = _export;
|
|
5369
|
+
var $trim = stringTrim.trim;
|
|
5370
|
+
var forcedStringTrimMethod = stringTrimForced;
|
|
5371
|
+
|
|
5372
|
+
// `String.prototype.trim` method
|
|
5373
|
+
// https://tc39.es/ecma262/#sec-string.prototype.trim
|
|
5374
|
+
$$1({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, {
|
|
5375
|
+
trim: function trim() {
|
|
5376
|
+
return $trim(this);
|
|
5377
|
+
}
|
|
5378
|
+
});
|
|
5379
|
+
|
|
5309
5380
|
var sefirot = [null, 'Lovingkindness', 'Might', 'Beauty', 'Eternity', 'Splendor', 'Foundation', 'Majesty'];
|
|
5310
5381
|
var sefirotTranslit = [null, 'Chesed', 'Gevurah', 'Tiferet', 'Netzach', 'Hod', 'Yesod', 'Malkhut'];
|
|
5311
5382
|
/** Represents a day 1-49 of counting the Omer from Pesach to Shavuot */
|
|
@@ -5334,7 +5405,6 @@ var OmerEvent = /*#__PURE__*/function (_Event) {
|
|
|
5334
5405
|
|
|
5335
5406
|
_this.weekNumber = Math.floor((omerDay - 1) / 7) + 1;
|
|
5336
5407
|
_this.daysWithinWeeks = omerDay % 7 || 7;
|
|
5337
|
-
_this.memo = [_this.sefira('en'), _this.sefira('he'), _this.sefira('translit')].join('\n');
|
|
5338
5408
|
return _this;
|
|
5339
5409
|
}
|
|
5340
5410
|
/**
|
|
@@ -5354,7 +5424,7 @@ var OmerEvent = /*#__PURE__*/function (_Event) {
|
|
|
5354
5424
|
case 'he':
|
|
5355
5425
|
var heWeek = Locale.gettext(week, 'he');
|
|
5356
5426
|
var heDayWithinWeek = Locale.gettext(dayWithinWeek, 'he');
|
|
5357
|
-
var hePrefix = this.weekNumber === 2 || this.weekNumber === 6 ? '
|
|
5427
|
+
var hePrefix = this.weekNumber === 2 || this.weekNumber === 6 ? 'שֶׁבִּ' : 'שֶׁבְּ';
|
|
5358
5428
|
return "".concat(heDayWithinWeek, " ").concat(hePrefix).concat(heWeek).normalize();
|
|
5359
5429
|
|
|
5360
5430
|
case 'translit':
|
|
@@ -5433,6 +5503,10 @@ var OmerEvent = /*#__PURE__*/function (_Event) {
|
|
|
5433
5503
|
}, {
|
|
5434
5504
|
key: "getTodayIs",
|
|
5435
5505
|
value: function getTodayIs(locale) {
|
|
5506
|
+
if (locale === 'he' || locale === 'he') {
|
|
5507
|
+
return getTodayIsHe(this.omer);
|
|
5508
|
+
}
|
|
5509
|
+
|
|
5436
5510
|
var totalDaysStr = this.omer === 1 ? 'day' : 'days';
|
|
5437
5511
|
var str = "Today is ".concat(this.omer, " ").concat(totalDaysStr);
|
|
5438
5512
|
|
|
@@ -5460,7 +5534,88 @@ var OmerEvent = /*#__PURE__*/function (_Event) {
|
|
|
5460
5534
|
}]);
|
|
5461
5535
|
|
|
5462
5536
|
return OmerEvent;
|
|
5463
|
-
}(Event);
|
|
5537
|
+
}(Event); // adapted from pip hdate package (GPL)
|
|
5538
|
+
// https://github.com/py-libhdate/py-libhdate/blob/master/hdate/date.py
|
|
5539
|
+
|
|
5540
|
+
var tens = ['', 'עֲשָׂרָה', 'עֶשְׂרִים', 'שְׁלוֹשִׁים', 'אַרְבָּעִים'];
|
|
5541
|
+
var ones = ['', 'אֶחָד', 'שְׁנַיִם', 'שְׁלוֹשָׁה', 'אַרְבָּעָה', 'חֲמִשָׁה', 'שִׁשָׁה', 'שִׁבְעָה', 'שְׁמוֹנָה', 'תִּשְׁעָה'];
|
|
5542
|
+
var shnei = 'שְׁנֵי';
|
|
5543
|
+
var yamim = 'יָמִים';
|
|
5544
|
+
var shneiYamim = shnei + ' ' + yamim;
|
|
5545
|
+
var shavuot = 'שָׁבוּעוֹת';
|
|
5546
|
+
var yom = 'יוֹם';
|
|
5547
|
+
var yomEchad = yom + ' ' + ones[1];
|
|
5548
|
+
/**
|
|
5549
|
+
* @private
|
|
5550
|
+
* @param {number} omer
|
|
5551
|
+
* @return {string}
|
|
5552
|
+
*/
|
|
5553
|
+
|
|
5554
|
+
function getTodayIsHe(omer) {
|
|
5555
|
+
var ten = Math.floor(omer / 10);
|
|
5556
|
+
var one = omer % 10;
|
|
5557
|
+
var str = 'הַיוֹם ';
|
|
5558
|
+
|
|
5559
|
+
if (10 < omer && omer < 20) {
|
|
5560
|
+
str += ones[one] + ' עָשָׂר';
|
|
5561
|
+
} else if (omer > 9) {
|
|
5562
|
+
str += ones[one];
|
|
5563
|
+
|
|
5564
|
+
if (one) {
|
|
5565
|
+
str += ' וְ';
|
|
5566
|
+
}
|
|
5567
|
+
}
|
|
5568
|
+
|
|
5569
|
+
if (omer > 2) {
|
|
5570
|
+
if (omer > 20 || omer === 10 || omer === 20) {
|
|
5571
|
+
str += tens[ten];
|
|
5572
|
+
}
|
|
5573
|
+
|
|
5574
|
+
if (omer < 11) {
|
|
5575
|
+
str += ones[one] + ' ' + yamim + ' ';
|
|
5576
|
+
} else {
|
|
5577
|
+
str += ' ' + yom + ' ';
|
|
5578
|
+
}
|
|
5579
|
+
} else if (omer === 1) {
|
|
5580
|
+
str += yomEchad + ' ';
|
|
5581
|
+
} else {
|
|
5582
|
+
// omer == 2
|
|
5583
|
+
str += shneiYamim + ' ';
|
|
5584
|
+
}
|
|
5585
|
+
|
|
5586
|
+
if (omer > 6) {
|
|
5587
|
+
str = str.trim(); // remove trailing space before comma
|
|
5588
|
+
|
|
5589
|
+
str += ', שְׁהֵם ';
|
|
5590
|
+
var weeks = Math.floor(omer / 7);
|
|
5591
|
+
var days = omer % 7;
|
|
5592
|
+
|
|
5593
|
+
if (weeks > 2) {
|
|
5594
|
+
str += ones[weeks] + ' ' + shavuot + ' ';
|
|
5595
|
+
} else if (weeks == 1) {
|
|
5596
|
+
str += 'שָׁבוּעַ' + ' ' + ones[1] + ' ';
|
|
5597
|
+
} else {
|
|
5598
|
+
// weeks == 2
|
|
5599
|
+
str += shnei + ' ' + shavuot + ' ';
|
|
5600
|
+
}
|
|
5601
|
+
|
|
5602
|
+
if (days) {
|
|
5603
|
+
str += 'וְ';
|
|
5604
|
+
|
|
5605
|
+
if (days > 2) {
|
|
5606
|
+
str += ones[days] + ' ' + yamim + ' ';
|
|
5607
|
+
} else if (days == 1) {
|
|
5608
|
+
str += yomEchad + ' ';
|
|
5609
|
+
} else {
|
|
5610
|
+
// days == 2
|
|
5611
|
+
str += shneiYamim + ' ';
|
|
5612
|
+
}
|
|
5613
|
+
}
|
|
5614
|
+
}
|
|
5615
|
+
|
|
5616
|
+
str += 'לָעוֹמֶר';
|
|
5617
|
+
return str.normalize();
|
|
5618
|
+
}
|
|
5464
5619
|
|
|
5465
5620
|
var osdate = new Date(1923, 8, 11);
|
|
5466
5621
|
var osday = greg.greg2abs(osdate);
|
|
@@ -5731,7 +5886,7 @@ var isArrayIteratorMethod$1 = function (it) {
|
|
|
5731
5886
|
};
|
|
5732
5887
|
|
|
5733
5888
|
var uncurryThis = functionUncurryThis;
|
|
5734
|
-
var fails = fails$
|
|
5889
|
+
var fails = fails$c;
|
|
5735
5890
|
var isCallable = isCallable$c;
|
|
5736
5891
|
var classof$1 = classof$3;
|
|
5737
5892
|
var getBuiltIn = getBuiltIn$4;
|
|
@@ -7370,7 +7525,7 @@ function getBirthdayOrAnniversary_(hyear, gdate) {
|
|
|
7370
7525
|
return new HDate(day, month, hyear);
|
|
7371
7526
|
}
|
|
7372
7527
|
|
|
7373
|
-
var version="3.
|
|
7528
|
+
var version="3.37.2";
|
|
7374
7529
|
|
|
7375
7530
|
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};
|
|
7376
7531
|
|