@hebcal/core 3.36.3 → 3.36.4
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 +114 -95
- 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 +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +3 -3
package/dist/bundle.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @hebcal/core v3.36.
|
|
1
|
+
/*! @hebcal/core v3.36.4 */
|
|
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$b = function (exec) {
|
|
608
608
|
try {
|
|
609
609
|
return !!exec();
|
|
610
610
|
} catch (error) {
|
|
@@ -612,17 +612,17 @@ var fails$a = function (exec) {
|
|
|
612
612
|
}
|
|
613
613
|
};
|
|
614
614
|
|
|
615
|
-
var fails$
|
|
615
|
+
var fails$a = fails$b;
|
|
616
616
|
|
|
617
617
|
// Detect IE8's incomplete defineProperty implementation
|
|
618
|
-
var descriptors = !fails$
|
|
618
|
+
var descriptors = !fails$a(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$9 = fails$b;
|
|
624
624
|
|
|
625
|
-
var functionBindNative = !fails$
|
|
625
|
+
var functionBindNative = !fails$9(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
|
|
@@ -688,14 +688,14 @@ var classofRaw$1 = function (it) {
|
|
|
688
688
|
|
|
689
689
|
var global$q = global$r;
|
|
690
690
|
var uncurryThis$b = functionUncurryThis;
|
|
691
|
-
var fails$
|
|
691
|
+
var fails$8 = fails$b;
|
|
692
692
|
var classof$4 = classofRaw$1;
|
|
693
693
|
|
|
694
694
|
var Object$4 = global$q.Object;
|
|
695
695
|
var split = uncurryThis$b(''.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$8(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);
|
|
@@ -724,21 +724,21 @@ var toIndexedObject$3 = function (it) {
|
|
|
724
724
|
|
|
725
725
|
// `IsCallable` abstract operation
|
|
726
726
|
// https://tc39.es/ecma262/#sec-iscallable
|
|
727
|
-
var isCallable$
|
|
727
|
+
var isCallable$c = function (argument) {
|
|
728
728
|
return typeof argument == 'function';
|
|
729
729
|
};
|
|
730
730
|
|
|
731
|
-
var isCallable$
|
|
731
|
+
var isCallable$b = isCallable$c;
|
|
732
732
|
|
|
733
733
|
var isObject$5 = function (it) {
|
|
734
|
-
return typeof it == 'object' ? it !== null : isCallable$
|
|
734
|
+
return typeof it == 'object' ? it !== null : isCallable$b(it);
|
|
735
735
|
};
|
|
736
736
|
|
|
737
737
|
var global$o = global$r;
|
|
738
|
-
var isCallable$
|
|
738
|
+
var isCallable$a = isCallable$c;
|
|
739
739
|
|
|
740
740
|
var aFunction = function (argument) {
|
|
741
|
-
return isCallable$
|
|
741
|
+
return isCallable$a(argument) ? argument : undefined;
|
|
742
742
|
};
|
|
743
743
|
|
|
744
744
|
var getBuiltIn$4 = function (namespace, method) {
|
|
@@ -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$7 = fails$b;
|
|
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$7(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
|
|
@@ -806,7 +806,7 @@ var useSymbolAsUid = NATIVE_SYMBOL$1
|
|
|
806
806
|
|
|
807
807
|
var global$m = global$r;
|
|
808
808
|
var getBuiltIn$2 = getBuiltIn$4;
|
|
809
|
-
var isCallable$
|
|
809
|
+
var isCallable$9 = isCallable$c;
|
|
810
810
|
var isPrototypeOf = objectIsPrototypeOf;
|
|
811
811
|
var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
|
|
812
812
|
|
|
@@ -816,7 +816,7 @@ var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function (it) {
|
|
|
816
816
|
return typeof it == 'symbol';
|
|
817
817
|
} : function (it) {
|
|
818
818
|
var $Symbol = getBuiltIn$2('Symbol');
|
|
819
|
-
return isCallable$
|
|
819
|
+
return isCallable$9($Symbol) && isPrototypeOf($Symbol.prototype, Object$3(it));
|
|
820
820
|
};
|
|
821
821
|
|
|
822
822
|
var global$l = global$r;
|
|
@@ -832,14 +832,14 @@ var tryToString$2 = function (argument) {
|
|
|
832
832
|
};
|
|
833
833
|
|
|
834
834
|
var global$k = global$r;
|
|
835
|
-
var isCallable$
|
|
835
|
+
var isCallable$8 = isCallable$c;
|
|
836
836
|
var tryToString$1 = tryToString$2;
|
|
837
837
|
|
|
838
838
|
var TypeError$7 = global$k.TypeError;
|
|
839
839
|
|
|
840
840
|
// `Assert: IsCallable(argument) is true`
|
|
841
841
|
var aCallable$4 = function (argument) {
|
|
842
|
-
if (isCallable$
|
|
842
|
+
if (isCallable$8(argument)) return argument;
|
|
843
843
|
throw TypeError$7(tryToString$1(argument) + ' is not a function');
|
|
844
844
|
};
|
|
845
845
|
|
|
@@ -854,7 +854,7 @@ var getMethod$3 = function (V, P) {
|
|
|
854
854
|
|
|
855
855
|
var global$j = global$r;
|
|
856
856
|
var call$5 = functionCall;
|
|
857
|
-
var isCallable$
|
|
857
|
+
var isCallable$7 = isCallable$c;
|
|
858
858
|
var isObject$4 = isObject$5;
|
|
859
859
|
|
|
860
860
|
var TypeError$6 = global$j.TypeError;
|
|
@@ -863,9 +863,9 @@ var TypeError$6 = global$j.TypeError;
|
|
|
863
863
|
// https://tc39.es/ecma262/#sec-ordinarytoprimitive
|
|
864
864
|
var ordinaryToPrimitive$1 = function (input, pref) {
|
|
865
865
|
var fn, val;
|
|
866
|
-
if (pref === 'string' && isCallable$
|
|
867
|
-
if (isCallable$
|
|
868
|
-
if (pref !== 'string' && isCallable$
|
|
866
|
+
if (pref === 'string' && isCallable$7(fn = input.toString) && !isObject$4(val = call$5(fn, input))) return val;
|
|
867
|
+
if (isCallable$7(fn = input.valueOf) && !isObject$4(val = call$5(fn, input))) return val;
|
|
868
|
+
if (pref !== 'string' && isCallable$7(fn = input.toString) && !isObject$4(val = call$5(fn, input))) return val;
|
|
869
869
|
throw TypeError$6("Can't convert object to primitive value");
|
|
870
870
|
};
|
|
871
871
|
|
|
@@ -874,11 +874,11 @@ var shared$3 = {exports: {}};
|
|
|
874
874
|
var global$i = global$r;
|
|
875
875
|
|
|
876
876
|
// eslint-disable-next-line es-x/no-object-defineproperty -- safe
|
|
877
|
-
var defineProperty = Object.defineProperty;
|
|
877
|
+
var defineProperty$1 = Object.defineProperty;
|
|
878
878
|
|
|
879
879
|
var setGlobal$3 = function (key, value) {
|
|
880
880
|
try {
|
|
881
|
-
defineProperty(global$i, key, { value: value, configurable: true, writable: true });
|
|
881
|
+
defineProperty$1(global$i, key, { value: value, configurable: true, writable: true });
|
|
882
882
|
} catch (error) {
|
|
883
883
|
global$i[key] = value;
|
|
884
884
|
} return value;
|
|
@@ -897,10 +897,10 @@ 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.4',
|
|
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.4/LICENSE',
|
|
904
904
|
source: 'https://github.com/zloirock/core-js'
|
|
905
905
|
});
|
|
906
906
|
|
|
@@ -1011,11 +1011,11 @@ var documentCreateElement = function (it) {
|
|
|
1011
1011
|
};
|
|
1012
1012
|
|
|
1013
1013
|
var DESCRIPTORS$5 = descriptors;
|
|
1014
|
-
var fails$
|
|
1014
|
+
var fails$6 = fails$b;
|
|
1015
1015
|
var createElement = documentCreateElement;
|
|
1016
1016
|
|
|
1017
1017
|
// Thanks to IE8 for its funny defineProperty
|
|
1018
|
-
var ie8DomDefine = !DESCRIPTORS$5 && !fails$
|
|
1018
|
+
var ie8DomDefine = !DESCRIPTORS$5 && !fails$6(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; }
|
|
@@ -1048,11 +1048,11 @@ objectGetOwnPropertyDescriptor.f = DESCRIPTORS$4 ? $getOwnPropertyDescriptor$1 :
|
|
|
1048
1048
|
var objectDefineProperty = {};
|
|
1049
1049
|
|
|
1050
1050
|
var DESCRIPTORS$3 = descriptors;
|
|
1051
|
-
var fails$
|
|
1051
|
+
var fails$5 = fails$b;
|
|
1052
1052
|
|
|
1053
1053
|
// V8 ~ Chrome 36-
|
|
1054
1054
|
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
1055
|
-
var v8PrototypeDefineBug = DESCRIPTORS$3 && fails$
|
|
1055
|
+
var v8PrototypeDefineBug = DESCRIPTORS$3 && fails$5(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,
|
|
@@ -1128,16 +1128,34 @@ var createNonEnumerableProperty$3 = DESCRIPTORS$1 ? function (object, key, value
|
|
|
1128
1128
|
return object;
|
|
1129
1129
|
};
|
|
1130
1130
|
|
|
1131
|
-
var
|
|
1131
|
+
var makeBuiltIn$2 = {exports: {}};
|
|
1132
|
+
|
|
1133
|
+
var DESCRIPTORS = descriptors;
|
|
1134
|
+
var hasOwn$4 = hasOwnProperty_1;
|
|
1135
|
+
|
|
1136
|
+
var FunctionPrototype = Function.prototype;
|
|
1137
|
+
// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
|
|
1138
|
+
var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
|
|
1139
|
+
|
|
1140
|
+
var EXISTS = hasOwn$4(FunctionPrototype, 'name');
|
|
1141
|
+
// additional protection from minified / mangled / dropped function names
|
|
1142
|
+
var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
|
|
1143
|
+
var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
|
|
1144
|
+
|
|
1145
|
+
var functionName = {
|
|
1146
|
+
EXISTS: EXISTS,
|
|
1147
|
+
PROPER: PROPER,
|
|
1148
|
+
CONFIGURABLE: CONFIGURABLE
|
|
1149
|
+
};
|
|
1132
1150
|
|
|
1133
1151
|
var uncurryThis$7 = functionUncurryThis;
|
|
1134
|
-
var isCallable$
|
|
1152
|
+
var isCallable$6 = isCallable$c;
|
|
1135
1153
|
var store$1 = sharedStore;
|
|
1136
1154
|
|
|
1137
1155
|
var functionToString = uncurryThis$7(Function.toString);
|
|
1138
1156
|
|
|
1139
1157
|
// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
|
|
1140
|
-
if (!isCallable$
|
|
1158
|
+
if (!isCallable$6(store$1.inspectSource)) {
|
|
1141
1159
|
store$1.inspectSource = function (it) {
|
|
1142
1160
|
return functionToString(it);
|
|
1143
1161
|
};
|
|
@@ -1146,12 +1164,12 @@ if (!isCallable$5(store$1.inspectSource)) {
|
|
|
1146
1164
|
var inspectSource$3 = store$1.inspectSource;
|
|
1147
1165
|
|
|
1148
1166
|
var global$a = global$r;
|
|
1149
|
-
var isCallable$
|
|
1167
|
+
var isCallable$5 = isCallable$c;
|
|
1150
1168
|
var inspectSource$2 = inspectSource$3;
|
|
1151
1169
|
|
|
1152
1170
|
var WeakMap$1 = global$a.WeakMap;
|
|
1153
1171
|
|
|
1154
|
-
var nativeWeakMap = isCallable$
|
|
1172
|
+
var nativeWeakMap = isCallable$5(WeakMap$1) && /native code/.test(inspectSource$2(WeakMap$1));
|
|
1155
1173
|
|
|
1156
1174
|
var shared$1 = shared$3.exports;
|
|
1157
1175
|
var uid = uid$2;
|
|
@@ -1169,7 +1187,7 @@ var global$9 = global$r;
|
|
|
1169
1187
|
var uncurryThis$6 = functionUncurryThis;
|
|
1170
1188
|
var isObject = isObject$5;
|
|
1171
1189
|
var createNonEnumerableProperty$2 = createNonEnumerableProperty$3;
|
|
1172
|
-
var hasOwn$
|
|
1190
|
+
var hasOwn$3 = hasOwnProperty_1;
|
|
1173
1191
|
var shared = sharedStore;
|
|
1174
1192
|
var sharedKey = sharedKey$1;
|
|
1175
1193
|
var hiddenKeys$2 = hiddenKeys$3;
|
|
@@ -1213,16 +1231,16 @@ if (NATIVE_WEAK_MAP || shared.state) {
|
|
|
1213
1231
|
var STATE = sharedKey('state');
|
|
1214
1232
|
hiddenKeys$2[STATE] = true;
|
|
1215
1233
|
set = function (it, metadata) {
|
|
1216
|
-
if (hasOwn$
|
|
1234
|
+
if (hasOwn$3(it, STATE)) throw new TypeError$2(OBJECT_ALREADY_INITIALIZED);
|
|
1217
1235
|
metadata.facade = it;
|
|
1218
1236
|
createNonEnumerableProperty$2(it, STATE, metadata);
|
|
1219
1237
|
return metadata;
|
|
1220
1238
|
};
|
|
1221
1239
|
get = function (it) {
|
|
1222
|
-
return hasOwn$
|
|
1240
|
+
return hasOwn$3(it, STATE) ? it[STATE] : {};
|
|
1223
1241
|
};
|
|
1224
1242
|
has = function (it) {
|
|
1225
|
-
return hasOwn$
|
|
1243
|
+
return hasOwn$3(it, STATE);
|
|
1226
1244
|
};
|
|
1227
1245
|
}
|
|
1228
1246
|
|
|
@@ -1234,59 +1252,63 @@ var internalState = {
|
|
|
1234
1252
|
getterFor: getterFor
|
|
1235
1253
|
};
|
|
1236
1254
|
|
|
1237
|
-
var
|
|
1238
|
-
var
|
|
1255
|
+
var fails$4 = fails$b;
|
|
1256
|
+
var isCallable$4 = isCallable$c;
|
|
1257
|
+
var hasOwn$2 = hasOwnProperty_1;
|
|
1258
|
+
var defineProperty = objectDefineProperty.f;
|
|
1259
|
+
var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
|
|
1260
|
+
var inspectSource$1 = inspectSource$3;
|
|
1261
|
+
var InternalStateModule = internalState;
|
|
1239
1262
|
|
|
1240
|
-
var
|
|
1241
|
-
|
|
1242
|
-
var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
|
|
1263
|
+
var enforceInternalState = InternalStateModule.enforce;
|
|
1264
|
+
var getInternalState = InternalStateModule.get;
|
|
1243
1265
|
|
|
1244
|
-
var
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
var CONFIGURABLE = EXISTS && (!DESCRIPTORS || (DESCRIPTORS && getDescriptor(FunctionPrototype, 'name').configurable));
|
|
1266
|
+
var CONFIGURABLE_LENGTH = !fails$4(function () {
|
|
1267
|
+
return defineProperty(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
|
|
1268
|
+
});
|
|
1248
1269
|
|
|
1249
|
-
var
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1270
|
+
var TEMPLATE = String(String).split('String');
|
|
1271
|
+
|
|
1272
|
+
var makeBuiltIn$1 = makeBuiltIn$2.exports = function (value, name, options) {
|
|
1273
|
+
if (String(name).slice(0, 7) === 'Symbol(') {
|
|
1274
|
+
name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
|
|
1275
|
+
}
|
|
1276
|
+
if (options && options.getter) name = 'get ' + name;
|
|
1277
|
+
if (options && options.setter) name = 'set ' + name;
|
|
1278
|
+
if (!hasOwn$2(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
|
|
1279
|
+
defineProperty(value, 'name', { value: name, configurable: true });
|
|
1280
|
+
}
|
|
1281
|
+
if (CONFIGURABLE_LENGTH && options && hasOwn$2(options, 'arity') && value.length !== options.arity) {
|
|
1282
|
+
defineProperty(value, 'length', { value: options.arity });
|
|
1283
|
+
}
|
|
1284
|
+
var state = enforceInternalState(value);
|
|
1285
|
+
if (!hasOwn$2(state, 'source')) {
|
|
1286
|
+
state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
|
|
1287
|
+
} return value;
|
|
1253
1288
|
};
|
|
1254
1289
|
|
|
1290
|
+
// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
|
|
1291
|
+
// eslint-disable-next-line no-extend-native -- required
|
|
1292
|
+
Function.prototype.toString = makeBuiltIn$1(function toString() {
|
|
1293
|
+
return isCallable$4(this) && getInternalState(this).source || inspectSource$1(this);
|
|
1294
|
+
}, 'toString');
|
|
1295
|
+
|
|
1255
1296
|
var global$8 = global$r;
|
|
1256
|
-
var isCallable$3 = isCallable$
|
|
1257
|
-
var hasOwn$2 = hasOwnProperty_1;
|
|
1297
|
+
var isCallable$3 = isCallable$c;
|
|
1258
1298
|
var createNonEnumerableProperty$1 = createNonEnumerableProperty$3;
|
|
1299
|
+
var makeBuiltIn = makeBuiltIn$2.exports;
|
|
1259
1300
|
var setGlobal$1 = setGlobal$3;
|
|
1260
|
-
var inspectSource$1 = inspectSource$3;
|
|
1261
|
-
var InternalStateModule = internalState;
|
|
1262
|
-
var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
|
|
1263
|
-
|
|
1264
|
-
var getInternalState = InternalStateModule.get;
|
|
1265
|
-
var enforceInternalState = InternalStateModule.enforce;
|
|
1266
|
-
var TEMPLATE = String(String).split('String');
|
|
1267
1301
|
|
|
1268
|
-
|
|
1302
|
+
var defineBuiltIn$1 = function (O, key, value, options) {
|
|
1269
1303
|
var unsafe = options ? !!options.unsafe : false;
|
|
1270
1304
|
var simple = options ? !!options.enumerable : false;
|
|
1271
1305
|
var noTargetGet = options ? !!options.noTargetGet : false;
|
|
1272
1306
|
var name = options && options.name !== undefined ? options.name : key;
|
|
1273
|
-
|
|
1274
|
-
if (isCallable$3(value)) {
|
|
1275
|
-
if (String(name).slice(0, 7) === 'Symbol(') {
|
|
1276
|
-
name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
|
|
1277
|
-
}
|
|
1278
|
-
if (!hasOwn$2(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
|
|
1279
|
-
createNonEnumerableProperty$1(value, 'name', name);
|
|
1280
|
-
}
|
|
1281
|
-
state = enforceInternalState(value);
|
|
1282
|
-
if (!state.source) {
|
|
1283
|
-
state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
|
|
1284
|
-
}
|
|
1285
|
-
}
|
|
1307
|
+
if (isCallable$3(value)) makeBuiltIn(value, name, options);
|
|
1286
1308
|
if (O === global$8) {
|
|
1287
1309
|
if (simple) O[key] = value;
|
|
1288
1310
|
else setGlobal$1(key, value);
|
|
1289
|
-
return;
|
|
1311
|
+
return O;
|
|
1290
1312
|
} else if (!unsafe) {
|
|
1291
1313
|
delete O[key];
|
|
1292
1314
|
} else if (!noTargetGet && O[key]) {
|
|
@@ -1294,10 +1316,8 @@ var TEMPLATE = String(String).split('String');
|
|
|
1294
1316
|
}
|
|
1295
1317
|
if (simple) O[key] = value;
|
|
1296
1318
|
else createNonEnumerableProperty$1(O, key, value);
|
|
1297
|
-
|
|
1298
|
-
}
|
|
1299
|
-
return isCallable$3(this) && getInternalState(this).source || inspectSource$1(this);
|
|
1300
|
-
});
|
|
1319
|
+
return O;
|
|
1320
|
+
};
|
|
1301
1321
|
|
|
1302
1322
|
var objectGetOwnPropertyNames = {};
|
|
1303
1323
|
|
|
@@ -1457,8 +1477,8 @@ var copyConstructorProperties$1 = function (target, source, exceptions) {
|
|
|
1457
1477
|
}
|
|
1458
1478
|
};
|
|
1459
1479
|
|
|
1460
|
-
var fails$3 = fails$
|
|
1461
|
-
var isCallable$2 = isCallable$
|
|
1480
|
+
var fails$3 = fails$b;
|
|
1481
|
+
var isCallable$2 = isCallable$c;
|
|
1462
1482
|
|
|
1463
1483
|
var replacement = /#|\.prototype\./;
|
|
1464
1484
|
|
|
@@ -1483,7 +1503,7 @@ var isForced_1 = isForced$1;
|
|
|
1483
1503
|
var global$7 = global$r;
|
|
1484
1504
|
var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
|
|
1485
1505
|
var createNonEnumerableProperty = createNonEnumerableProperty$3;
|
|
1486
|
-
var
|
|
1506
|
+
var defineBuiltIn = defineBuiltIn$1;
|
|
1487
1507
|
var setGlobal = setGlobal$3;
|
|
1488
1508
|
var copyConstructorProperties = copyConstructorProperties$1;
|
|
1489
1509
|
var isForced = isForced_1;
|
|
@@ -1531,8 +1551,7 @@ var _export = function (options, source) {
|
|
|
1531
1551
|
if (options.sham || (targetProperty && targetProperty.sham)) {
|
|
1532
1552
|
createNonEnumerableProperty(sourceProperty, 'sham', true);
|
|
1533
1553
|
}
|
|
1534
|
-
|
|
1535
|
-
redefine(target, key, sourceProperty, options);
|
|
1554
|
+
defineBuiltIn(target, key, sourceProperty, options);
|
|
1536
1555
|
}
|
|
1537
1556
|
};
|
|
1538
1557
|
|
|
@@ -1547,7 +1566,7 @@ var toStringTagSupport = String(test$1) === '[object z]';
|
|
|
1547
1566
|
|
|
1548
1567
|
var global$6 = global$r;
|
|
1549
1568
|
var TO_STRING_TAG_SUPPORT = toStringTagSupport;
|
|
1550
|
-
var isCallable$1 = isCallable$
|
|
1569
|
+
var isCallable$1 = isCallable$c;
|
|
1551
1570
|
var classofRaw = classofRaw$1;
|
|
1552
1571
|
var wellKnownSymbol$3 = wellKnownSymbol$6;
|
|
1553
1572
|
|
|
@@ -1659,7 +1678,7 @@ var merge = function (array, left, right, comparefn) {
|
|
|
1659
1678
|
|
|
1660
1679
|
var arraySort = mergeSort;
|
|
1661
1680
|
|
|
1662
|
-
var fails$2 = fails$
|
|
1681
|
+
var fails$2 = fails$b;
|
|
1663
1682
|
|
|
1664
1683
|
var arrayMethodIsStrict$1 = function (METHOD_NAME, argument) {
|
|
1665
1684
|
var method = [][METHOD_NAME];
|
|
@@ -1691,7 +1710,7 @@ var aCallable$2 = aCallable$4;
|
|
|
1691
1710
|
var toObject$1 = toObject$3;
|
|
1692
1711
|
var lengthOfArrayLike$1 = lengthOfArrayLike$4;
|
|
1693
1712
|
var toString = toString$1;
|
|
1694
|
-
var fails$1 = fails$
|
|
1713
|
+
var fails$1 = fails$b;
|
|
1695
1714
|
var internalSort = arraySort;
|
|
1696
1715
|
var arrayMethodIsStrict = arrayMethodIsStrict$1;
|
|
1697
1716
|
var FF = engineFfVersion;
|
|
@@ -5270,7 +5289,7 @@ var INCORRECT_LENGTH = !!$fromCodePoint && $fromCodePoint.length != 1;
|
|
|
5270
5289
|
|
|
5271
5290
|
// `String.fromCodePoint` method
|
|
5272
5291
|
// https://tc39.es/ecma262/#sec-string.fromcodepoint
|
|
5273
|
-
$$1({ target: 'String', stat: true, forced: INCORRECT_LENGTH }, {
|
|
5292
|
+
$$1({ target: 'String', stat: true, arity: 1, forced: INCORRECT_LENGTH }, {
|
|
5274
5293
|
// eslint-disable-next-line no-unused-vars -- required for `.length`
|
|
5275
5294
|
fromCodePoint: function fromCodePoint(x) {
|
|
5276
5295
|
var elements = [];
|
|
@@ -5446,7 +5465,7 @@ var OmerEvent = /*#__PURE__*/function (_Event) {
|
|
|
5446
5465
|
var osdate = new Date(1923, 8, 11);
|
|
5447
5466
|
var osday = greg.greg2abs(osdate);
|
|
5448
5467
|
var nsday = greg.greg2abs(new Date(1975, 5, 24));
|
|
5449
|
-
var shas = [['Berachot', 64], ['Shabbat', 157], ['Eruvin', 105], ['Pesachim', 121], ['Shekalim', 22], ['Yoma', 88], ['Sukkah', 56], ['Beitzah', 40], ['Rosh Hashana', 35], ['Taanit', 31], ['Megillah', 32], ['Moed Katan', 29], ['Chagigah', 27], ['Yevamot', 122], ['Ketubot', 112], ['Nedarim', 91], ['Nazir', 66], ['Sotah', 49], ['Gitin', 90], ['Kiddushin', 82], ['Baba Kamma', 119], ['Baba Metzia', 119], ['Baba Batra', 176], ['Sanhedrin', 113], ['Makkot', 24], ['Shevuot', 49], ['Avodah Zarah', 76], ['Horayot', 14], ['Zevachim', 120], ['Menachot', 110], ['Chullin', 142], ['Bechorot', 61], ['Arachin', 34], ['Temurah', 34], ['Keritot', 28], ['Meilah', 22], ['Kinnim', 4], ['Tamid',
|
|
5468
|
+
var shas = [['Berachot', 64], ['Shabbat', 157], ['Eruvin', 105], ['Pesachim', 121], ['Shekalim', 22], ['Yoma', 88], ['Sukkah', 56], ['Beitzah', 40], ['Rosh Hashana', 35], ['Taanit', 31], ['Megillah', 32], ['Moed Katan', 29], ['Chagigah', 27], ['Yevamot', 122], ['Ketubot', 112], ['Nedarim', 91], ['Nazir', 66], ['Sotah', 49], ['Gitin', 90], ['Kiddushin', 82], ['Baba Kamma', 119], ['Baba Metzia', 119], ['Baba Batra', 176], ['Sanhedrin', 113], ['Makkot', 24], ['Shevuot', 49], ['Avodah Zarah', 76], ['Horayot', 14], ['Zevachim', 120], ['Menachot', 110], ['Chullin', 142], ['Bechorot', 61], ['Arachin', 34], ['Temurah', 34], ['Keritot', 28], ['Meilah', 22], ['Kinnim', 4], ['Tamid', 9], ['Midot', 5], ['Niddah', 73]].map(function (m) {
|
|
5450
5469
|
return {
|
|
5451
5470
|
name: m[0],
|
|
5452
5471
|
blatt: m[1]
|
|
@@ -5520,7 +5539,7 @@ var DafYomi = /*#__PURE__*/function () {
|
|
|
5520
5539
|
break;
|
|
5521
5540
|
|
|
5522
5541
|
case 38:
|
|
5523
|
-
blatt = blatt +
|
|
5542
|
+
blatt = blatt + 32;
|
|
5524
5543
|
break;
|
|
5525
5544
|
} // Bailout
|
|
5526
5545
|
|
|
@@ -5712,8 +5731,8 @@ var isArrayIteratorMethod$1 = function (it) {
|
|
|
5712
5731
|
};
|
|
5713
5732
|
|
|
5714
5733
|
var uncurryThis = functionUncurryThis;
|
|
5715
|
-
var fails = fails$
|
|
5716
|
-
var isCallable = isCallable$
|
|
5734
|
+
var fails = fails$b;
|
|
5735
|
+
var isCallable = isCallable$c;
|
|
5717
5736
|
var classof$1 = classof$3;
|
|
5718
5737
|
var getBuiltIn = getBuiltIn$4;
|
|
5719
5738
|
var inspectSource = inspectSource$3;
|
|
@@ -7351,7 +7370,7 @@ function getBirthdayOrAnniversary_(hyear, gdate) {
|
|
|
7351
7370
|
return new HDate(day, month, hyear);
|
|
7352
7371
|
}
|
|
7353
7372
|
|
|
7354
|
-
var version="3.36.
|
|
7373
|
+
var version="3.36.4";
|
|
7355
7374
|
|
|
7356
7375
|
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};
|
|
7357
7376
|
|