@hebcal/core 3.33.7 → 3.35.0
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 +62 -4
- package/dist/bundle.js +449 -182
- 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 +302 -104
- package/dist/index.mjs +302 -104
- package/hebcal.d.ts +27 -1
- package/package.json +9 -9
package/dist/bundle.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @hebcal/core v3.
|
|
1
|
+
/*! @hebcal/core v3.35.0 */
|
|
2
2
|
var hebcal = (function (exports) {
|
|
3
3
|
'use strict';
|
|
4
4
|
|
|
@@ -592,8 +592,8 @@ var check = function (it) {
|
|
|
592
592
|
};
|
|
593
593
|
|
|
594
594
|
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
595
|
-
var global$
|
|
596
|
-
// eslint-disable-next-line es/no-global-this -- safe
|
|
595
|
+
var global$r =
|
|
596
|
+
// eslint-disable-next-line es-x/no-global-this -- safe
|
|
597
597
|
check(typeof globalThis == 'object' && globalThis) ||
|
|
598
598
|
check(typeof window == 'object' && window) ||
|
|
599
599
|
// eslint-disable-next-line no-restricted-globals -- safe
|
|
@@ -616,13 +616,14 @@ var fails$9 = fails$a;
|
|
|
616
616
|
|
|
617
617
|
// Detect IE8's incomplete defineProperty implementation
|
|
618
618
|
var descriptors = !fails$9(function () {
|
|
619
|
-
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
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
623
|
var fails$8 = fails$a;
|
|
624
624
|
|
|
625
625
|
var functionBindNative = !fails$8(function () {
|
|
626
|
+
// eslint-disable-next-line es-x/no-function-prototype-bind -- safe
|
|
626
627
|
var test = (function () { /* empty */ }).bind();
|
|
627
628
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
628
629
|
return typeof test != 'function' || test.hasOwnProperty('prototype');
|
|
@@ -639,7 +640,7 @@ var functionCall = NATIVE_BIND$2 ? call$7.bind(call$7) : function () {
|
|
|
639
640
|
var objectPropertyIsEnumerable = {};
|
|
640
641
|
|
|
641
642
|
var $propertyIsEnumerable = {}.propertyIsEnumerable;
|
|
642
|
-
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
643
|
+
// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
|
|
643
644
|
var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
|
|
644
645
|
|
|
645
646
|
// Nashorn ~ JDK8 bug
|
|
@@ -666,32 +667,32 @@ var NATIVE_BIND$1 = functionBindNative;
|
|
|
666
667
|
var FunctionPrototype$1 = Function.prototype;
|
|
667
668
|
var bind$2 = FunctionPrototype$1.bind;
|
|
668
669
|
var call$6 = FunctionPrototype$1.call;
|
|
669
|
-
var uncurryThis$
|
|
670
|
+
var uncurryThis$d = NATIVE_BIND$1 && bind$2.bind(call$6, call$6);
|
|
670
671
|
|
|
671
672
|
var functionUncurryThis = NATIVE_BIND$1 ? function (fn) {
|
|
672
|
-
return fn && uncurryThis$
|
|
673
|
+
return fn && uncurryThis$d(fn);
|
|
673
674
|
} : function (fn) {
|
|
674
675
|
return fn && function () {
|
|
675
676
|
return call$6.apply(fn, arguments);
|
|
676
677
|
};
|
|
677
678
|
};
|
|
678
679
|
|
|
679
|
-
var uncurryThis$
|
|
680
|
+
var uncurryThis$c = functionUncurryThis;
|
|
680
681
|
|
|
681
|
-
var toString$3 = uncurryThis$
|
|
682
|
-
var stringSlice = uncurryThis$
|
|
682
|
+
var toString$3 = uncurryThis$c({}.toString);
|
|
683
|
+
var stringSlice = uncurryThis$c(''.slice);
|
|
683
684
|
|
|
684
685
|
var classofRaw$1 = function (it) {
|
|
685
686
|
return stringSlice(toString$3(it), 8, -1);
|
|
686
687
|
};
|
|
687
688
|
|
|
688
|
-
var global$
|
|
689
|
-
var uncurryThis$
|
|
689
|
+
var global$q = global$r;
|
|
690
|
+
var uncurryThis$b = functionUncurryThis;
|
|
690
691
|
var fails$7 = fails$a;
|
|
691
692
|
var classof$4 = classofRaw$1;
|
|
692
693
|
|
|
693
|
-
var Object$4 = global$
|
|
694
|
-
var split = uncurryThis$
|
|
694
|
+
var Object$4 = global$q.Object;
|
|
695
|
+
var split = uncurryThis$b(''.split);
|
|
695
696
|
|
|
696
697
|
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
|
697
698
|
var indexedObject = fails$7(function () {
|
|
@@ -702,9 +703,9 @@ var indexedObject = fails$7(function () {
|
|
|
702
703
|
return classof$4(it) == 'String' ? split(it, '') : Object$4(it);
|
|
703
704
|
} : Object$4;
|
|
704
705
|
|
|
705
|
-
var global$
|
|
706
|
+
var global$p = global$r;
|
|
706
707
|
|
|
707
|
-
var TypeError$8 = global$
|
|
708
|
+
var TypeError$8 = global$p.TypeError;
|
|
708
709
|
|
|
709
710
|
// `RequireObjectCoercible` abstract operation
|
|
710
711
|
// https://tc39.es/ecma262/#sec-requireobjectcoercible
|
|
@@ -733,7 +734,7 @@ var isObject$5 = function (it) {
|
|
|
733
734
|
return typeof it == 'object' ? it !== null : isCallable$a(it);
|
|
734
735
|
};
|
|
735
736
|
|
|
736
|
-
var global$
|
|
737
|
+
var global$o = global$r;
|
|
737
738
|
var isCallable$9 = isCallable$b;
|
|
738
739
|
|
|
739
740
|
var aFunction = function (argument) {
|
|
@@ -741,22 +742,22 @@ var aFunction = function (argument) {
|
|
|
741
742
|
};
|
|
742
743
|
|
|
743
744
|
var getBuiltIn$4 = function (namespace, method) {
|
|
744
|
-
return arguments.length < 2 ? aFunction(global$
|
|
745
|
+
return arguments.length < 2 ? aFunction(global$o[namespace]) : global$o[namespace] && global$o[namespace][method];
|
|
745
746
|
};
|
|
746
747
|
|
|
747
|
-
var uncurryThis$
|
|
748
|
+
var uncurryThis$a = functionUncurryThis;
|
|
748
749
|
|
|
749
|
-
var objectIsPrototypeOf = uncurryThis$
|
|
750
|
+
var objectIsPrototypeOf = uncurryThis$a({}.isPrototypeOf);
|
|
750
751
|
|
|
751
752
|
var getBuiltIn$3 = getBuiltIn$4;
|
|
752
753
|
|
|
753
754
|
var engineUserAgent = getBuiltIn$3('navigator', 'userAgent') || '';
|
|
754
755
|
|
|
755
|
-
var global$
|
|
756
|
+
var global$n = global$r;
|
|
756
757
|
var userAgent$2 = engineUserAgent;
|
|
757
758
|
|
|
758
|
-
var process = global$
|
|
759
|
-
var Deno = global$
|
|
759
|
+
var process = global$n.process;
|
|
760
|
+
var Deno = global$n.Deno;
|
|
760
761
|
var versions = process && process.versions || Deno && Deno.version;
|
|
761
762
|
var v8 = versions && versions.v8;
|
|
762
763
|
var match, version$1;
|
|
@@ -780,12 +781,12 @@ if (!version$1 && userAgent$2) {
|
|
|
780
781
|
|
|
781
782
|
var engineV8Version = version$1;
|
|
782
783
|
|
|
783
|
-
/* eslint-disable es/no-symbol -- required for testing */
|
|
784
|
+
/* eslint-disable es-x/no-symbol -- required for testing */
|
|
784
785
|
|
|
785
786
|
var V8_VERSION = engineV8Version;
|
|
786
787
|
var fails$6 = fails$a;
|
|
787
788
|
|
|
788
|
-
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
789
|
+
// eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing
|
|
789
790
|
var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$6(function () {
|
|
790
791
|
var symbol = Symbol();
|
|
791
792
|
// Chrome 38 Symbol has incorrect toString conversion
|
|
@@ -795,7 +796,7 @@ var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$6(function () {
|
|
|
795
796
|
!Symbol.sham && V8_VERSION && V8_VERSION < 41;
|
|
796
797
|
});
|
|
797
798
|
|
|
798
|
-
/* eslint-disable es/no-symbol -- required for testing */
|
|
799
|
+
/* eslint-disable es-x/no-symbol -- required for testing */
|
|
799
800
|
|
|
800
801
|
var NATIVE_SYMBOL$1 = nativeSymbol;
|
|
801
802
|
|
|
@@ -803,13 +804,13 @@ var useSymbolAsUid = NATIVE_SYMBOL$1
|
|
|
803
804
|
&& !Symbol.sham
|
|
804
805
|
&& typeof Symbol.iterator == 'symbol';
|
|
805
806
|
|
|
806
|
-
var global$
|
|
807
|
+
var global$m = global$r;
|
|
807
808
|
var getBuiltIn$2 = getBuiltIn$4;
|
|
808
809
|
var isCallable$8 = isCallable$b;
|
|
809
810
|
var isPrototypeOf = objectIsPrototypeOf;
|
|
810
811
|
var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
|
|
811
812
|
|
|
812
|
-
var Object$3 = global$
|
|
813
|
+
var Object$3 = global$m.Object;
|
|
813
814
|
|
|
814
815
|
var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function (it) {
|
|
815
816
|
return typeof it == 'symbol';
|
|
@@ -818,9 +819,9 @@ var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function (it) {
|
|
|
818
819
|
return isCallable$8($Symbol) && isPrototypeOf($Symbol.prototype, Object$3(it));
|
|
819
820
|
};
|
|
820
821
|
|
|
821
|
-
var global$
|
|
822
|
+
var global$l = global$r;
|
|
822
823
|
|
|
823
|
-
var String$3 = global$
|
|
824
|
+
var String$3 = global$l.String;
|
|
824
825
|
|
|
825
826
|
var tryToString$2 = function (argument) {
|
|
826
827
|
try {
|
|
@@ -830,11 +831,11 @@ var tryToString$2 = function (argument) {
|
|
|
830
831
|
}
|
|
831
832
|
};
|
|
832
833
|
|
|
833
|
-
var global$
|
|
834
|
+
var global$k = global$r;
|
|
834
835
|
var isCallable$7 = isCallable$b;
|
|
835
836
|
var tryToString$1 = tryToString$2;
|
|
836
837
|
|
|
837
|
-
var TypeError$7 = global$
|
|
838
|
+
var TypeError$7 = global$k.TypeError;
|
|
838
839
|
|
|
839
840
|
// `Assert: IsCallable(argument) is true`
|
|
840
841
|
var aCallable$4 = function (argument) {
|
|
@@ -851,12 +852,12 @@ var getMethod$3 = function (V, P) {
|
|
|
851
852
|
return func == null ? undefined : aCallable$3(func);
|
|
852
853
|
};
|
|
853
854
|
|
|
854
|
-
var global$
|
|
855
|
+
var global$j = global$r;
|
|
855
856
|
var call$5 = functionCall;
|
|
856
857
|
var isCallable$6 = isCallable$b;
|
|
857
858
|
var isObject$4 = isObject$5;
|
|
858
859
|
|
|
859
|
-
var TypeError$6 = global$
|
|
860
|
+
var TypeError$6 = global$j.TypeError;
|
|
860
861
|
|
|
861
862
|
// `OrdinaryToPrimitive` abstract operation
|
|
862
863
|
// https://tc39.es/ecma262/#sec-ordinarytoprimitive
|
|
@@ -870,24 +871,24 @@ var ordinaryToPrimitive$1 = function (input, pref) {
|
|
|
870
871
|
|
|
871
872
|
var shared$3 = {exports: {}};
|
|
872
873
|
|
|
873
|
-
var global$
|
|
874
|
+
var global$i = global$r;
|
|
874
875
|
|
|
875
|
-
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
876
|
+
// eslint-disable-next-line es-x/no-object-defineproperty -- safe
|
|
876
877
|
var defineProperty = Object.defineProperty;
|
|
877
878
|
|
|
878
879
|
var setGlobal$3 = function (key, value) {
|
|
879
880
|
try {
|
|
880
|
-
defineProperty(global$
|
|
881
|
+
defineProperty(global$i, key, { value: value, configurable: true, writable: true });
|
|
881
882
|
} catch (error) {
|
|
882
|
-
global$
|
|
883
|
+
global$i[key] = value;
|
|
883
884
|
} return value;
|
|
884
885
|
};
|
|
885
886
|
|
|
886
|
-
var global$
|
|
887
|
+
var global$h = global$r;
|
|
887
888
|
var setGlobal$2 = setGlobal$3;
|
|
888
889
|
|
|
889
890
|
var SHARED = '__core-js_shared__';
|
|
890
|
-
var store$3 = global$
|
|
891
|
+
var store$3 = global$h[SHARED] || setGlobal$2(SHARED, {});
|
|
891
892
|
|
|
892
893
|
var sharedStore = store$3;
|
|
893
894
|
|
|
@@ -896,17 +897,17 @@ var store$2 = sharedStore;
|
|
|
896
897
|
(shared$3.exports = function (key, value) {
|
|
897
898
|
return store$2[key] || (store$2[key] = value !== undefined ? value : {});
|
|
898
899
|
})('versions', []).push({
|
|
899
|
-
version: '3.
|
|
900
|
+
version: '3.22.2',
|
|
900
901
|
mode: 'global',
|
|
901
902
|
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
|
|
902
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.
|
|
903
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.22.2/LICENSE',
|
|
903
904
|
source: 'https://github.com/zloirock/core-js'
|
|
904
905
|
});
|
|
905
906
|
|
|
906
|
-
var global$
|
|
907
|
+
var global$g = global$r;
|
|
907
908
|
var requireObjectCoercible = requireObjectCoercible$2;
|
|
908
909
|
|
|
909
|
-
var Object$2 = global$
|
|
910
|
+
var Object$2 = global$g.Object;
|
|
910
911
|
|
|
911
912
|
// `ToObject` abstract operation
|
|
912
913
|
// https://tc39.es/ecma262/#sec-toobject
|
|
@@ -914,28 +915,29 @@ var toObject$3 = function (argument) {
|
|
|
914
915
|
return Object$2(requireObjectCoercible(argument));
|
|
915
916
|
};
|
|
916
917
|
|
|
917
|
-
var uncurryThis$
|
|
918
|
+
var uncurryThis$9 = functionUncurryThis;
|
|
918
919
|
var toObject$2 = toObject$3;
|
|
919
920
|
|
|
920
|
-
var hasOwnProperty = uncurryThis$
|
|
921
|
+
var hasOwnProperty = uncurryThis$9({}.hasOwnProperty);
|
|
921
922
|
|
|
922
923
|
// `HasOwnProperty` abstract operation
|
|
923
924
|
// https://tc39.es/ecma262/#sec-hasownproperty
|
|
925
|
+
// eslint-disable-next-line es-x/no-object-hasown -- safe
|
|
924
926
|
var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
|
|
925
927
|
return hasOwnProperty(toObject$2(it), key);
|
|
926
928
|
};
|
|
927
929
|
|
|
928
|
-
var uncurryThis$
|
|
930
|
+
var uncurryThis$8 = functionUncurryThis;
|
|
929
931
|
|
|
930
932
|
var id$1 = 0;
|
|
931
933
|
var postfix = Math.random();
|
|
932
|
-
var toString$2 = uncurryThis$
|
|
934
|
+
var toString$2 = uncurryThis$8(1.0.toString);
|
|
933
935
|
|
|
934
936
|
var uid$2 = function (key) {
|
|
935
937
|
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$2(++id$1 + postfix, 36);
|
|
936
938
|
};
|
|
937
939
|
|
|
938
|
-
var global$
|
|
940
|
+
var global$f = global$r;
|
|
939
941
|
var shared$2 = shared$3.exports;
|
|
940
942
|
var hasOwn$6 = hasOwnProperty_1;
|
|
941
943
|
var uid$1 = uid$2;
|
|
@@ -943,7 +945,7 @@ var NATIVE_SYMBOL = nativeSymbol;
|
|
|
943
945
|
var USE_SYMBOL_AS_UID = useSymbolAsUid;
|
|
944
946
|
|
|
945
947
|
var WellKnownSymbolsStore = shared$2('wks');
|
|
946
|
-
var Symbol$1 = global$
|
|
948
|
+
var Symbol$1 = global$f.Symbol;
|
|
947
949
|
var symbolFor = Symbol$1 && Symbol$1['for'];
|
|
948
950
|
var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
|
|
949
951
|
|
|
@@ -960,7 +962,7 @@ var wellKnownSymbol$6 = function (name) {
|
|
|
960
962
|
} return WellKnownSymbolsStore[name];
|
|
961
963
|
};
|
|
962
964
|
|
|
963
|
-
var global$
|
|
965
|
+
var global$e = global$r;
|
|
964
966
|
var call$4 = functionCall;
|
|
965
967
|
var isObject$3 = isObject$5;
|
|
966
968
|
var isSymbol$1 = isSymbol$2;
|
|
@@ -968,7 +970,7 @@ var getMethod$2 = getMethod$3;
|
|
|
968
970
|
var ordinaryToPrimitive = ordinaryToPrimitive$1;
|
|
969
971
|
var wellKnownSymbol$5 = wellKnownSymbol$6;
|
|
970
972
|
|
|
971
|
-
var TypeError$5 = global$
|
|
973
|
+
var TypeError$5 = global$e.TypeError;
|
|
972
974
|
var TO_PRIMITIVE = wellKnownSymbol$5('toPrimitive');
|
|
973
975
|
|
|
974
976
|
// `ToPrimitive` abstract operation
|
|
@@ -997,10 +999,10 @@ var toPropertyKey$3 = function (argument) {
|
|
|
997
999
|
return isSymbol(key) ? key : key + '';
|
|
998
1000
|
};
|
|
999
1001
|
|
|
1000
|
-
var global$
|
|
1002
|
+
var global$d = global$r;
|
|
1001
1003
|
var isObject$2 = isObject$5;
|
|
1002
1004
|
|
|
1003
|
-
var document = global$
|
|
1005
|
+
var document = global$d.document;
|
|
1004
1006
|
// typeof document.createElement is 'object' in old IE
|
|
1005
1007
|
var EXISTS$1 = isObject$2(document) && isObject$2(document.createElement);
|
|
1006
1008
|
|
|
@@ -1014,7 +1016,7 @@ var createElement = documentCreateElement;
|
|
|
1014
1016
|
|
|
1015
1017
|
// Thanks to IE8 for its funny defineProperty
|
|
1016
1018
|
var ie8DomDefine = !DESCRIPTORS$5 && !fails$5(function () {
|
|
1017
|
-
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
1019
|
+
// eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
|
|
1018
1020
|
return Object.defineProperty(createElement('div'), 'a', {
|
|
1019
1021
|
get: function () { return 7; }
|
|
1020
1022
|
}).a != 7;
|
|
@@ -1029,7 +1031,7 @@ var toPropertyKey$2 = toPropertyKey$3;
|
|
|
1029
1031
|
var hasOwn$5 = hasOwnProperty_1;
|
|
1030
1032
|
var IE8_DOM_DEFINE$1 = ie8DomDefine;
|
|
1031
1033
|
|
|
1032
|
-
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1034
|
+
// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
|
|
1033
1035
|
var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
|
|
1034
1036
|
|
|
1035
1037
|
// `Object.getOwnPropertyDescriptor` method
|
|
@@ -1051,18 +1053,18 @@ var fails$4 = fails$a;
|
|
|
1051
1053
|
// V8 ~ Chrome 36-
|
|
1052
1054
|
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
1053
1055
|
var v8PrototypeDefineBug = DESCRIPTORS$3 && fails$4(function () {
|
|
1054
|
-
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
1056
|
+
// eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
|
|
1055
1057
|
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
|
1056
1058
|
value: 42,
|
|
1057
1059
|
writable: false
|
|
1058
1060
|
}).prototype != 42;
|
|
1059
1061
|
});
|
|
1060
1062
|
|
|
1061
|
-
var global$
|
|
1063
|
+
var global$c = global$r;
|
|
1062
1064
|
var isObject$1 = isObject$5;
|
|
1063
1065
|
|
|
1064
|
-
var String$2 = global$
|
|
1065
|
-
var TypeError$4 = global$
|
|
1066
|
+
var String$2 = global$c.String;
|
|
1067
|
+
var TypeError$4 = global$c.TypeError;
|
|
1066
1068
|
|
|
1067
1069
|
// `Assert: Type(argument) is Object`
|
|
1068
1070
|
var anObject$5 = function (argument) {
|
|
@@ -1070,17 +1072,17 @@ var anObject$5 = function (argument) {
|
|
|
1070
1072
|
throw TypeError$4(String$2(argument) + ' is not an object');
|
|
1071
1073
|
};
|
|
1072
1074
|
|
|
1073
|
-
var global$
|
|
1075
|
+
var global$b = global$r;
|
|
1074
1076
|
var DESCRIPTORS$2 = descriptors;
|
|
1075
1077
|
var IE8_DOM_DEFINE = ie8DomDefine;
|
|
1076
1078
|
var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
|
|
1077
1079
|
var anObject$4 = anObject$5;
|
|
1078
1080
|
var toPropertyKey$1 = toPropertyKey$3;
|
|
1079
1081
|
|
|
1080
|
-
var TypeError$3 = global$
|
|
1081
|
-
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
1082
|
+
var TypeError$3 = global$b.TypeError;
|
|
1083
|
+
// eslint-disable-next-line es-x/no-object-defineproperty -- safe
|
|
1082
1084
|
var $defineProperty = Object.defineProperty;
|
|
1083
|
-
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1085
|
+
// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
|
|
1084
1086
|
var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
1085
1087
|
var ENUMERABLE = 'enumerable';
|
|
1086
1088
|
var CONFIGURABLE$1 = 'configurable';
|
|
@@ -1128,11 +1130,11 @@ var createNonEnumerableProperty$3 = DESCRIPTORS$1 ? function (object, key, value
|
|
|
1128
1130
|
|
|
1129
1131
|
var redefine$1 = {exports: {}};
|
|
1130
1132
|
|
|
1131
|
-
var uncurryThis$
|
|
1133
|
+
var uncurryThis$7 = functionUncurryThis;
|
|
1132
1134
|
var isCallable$5 = isCallable$b;
|
|
1133
1135
|
var store$1 = sharedStore;
|
|
1134
1136
|
|
|
1135
|
-
var functionToString = uncurryThis$
|
|
1137
|
+
var functionToString = uncurryThis$7(Function.toString);
|
|
1136
1138
|
|
|
1137
1139
|
// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
|
|
1138
1140
|
if (!isCallable$5(store$1.inspectSource)) {
|
|
@@ -1143,11 +1145,11 @@ if (!isCallable$5(store$1.inspectSource)) {
|
|
|
1143
1145
|
|
|
1144
1146
|
var inspectSource$3 = store$1.inspectSource;
|
|
1145
1147
|
|
|
1146
|
-
var global$
|
|
1148
|
+
var global$a = global$r;
|
|
1147
1149
|
var isCallable$4 = isCallable$b;
|
|
1148
1150
|
var inspectSource$2 = inspectSource$3;
|
|
1149
1151
|
|
|
1150
|
-
var WeakMap$1 = global$
|
|
1152
|
+
var WeakMap$1 = global$a.WeakMap;
|
|
1151
1153
|
|
|
1152
1154
|
var nativeWeakMap = isCallable$4(WeakMap$1) && /native code/.test(inspectSource$2(WeakMap$1));
|
|
1153
1155
|
|
|
@@ -1163,8 +1165,8 @@ var sharedKey$1 = function (key) {
|
|
|
1163
1165
|
var hiddenKeys$3 = {};
|
|
1164
1166
|
|
|
1165
1167
|
var NATIVE_WEAK_MAP = nativeWeakMap;
|
|
1166
|
-
var global$
|
|
1167
|
-
var uncurryThis$
|
|
1168
|
+
var global$9 = global$r;
|
|
1169
|
+
var uncurryThis$6 = functionUncurryThis;
|
|
1168
1170
|
var isObject = isObject$5;
|
|
1169
1171
|
var createNonEnumerableProperty$2 = createNonEnumerableProperty$3;
|
|
1170
1172
|
var hasOwn$4 = hasOwnProperty_1;
|
|
@@ -1173,8 +1175,8 @@ var sharedKey = sharedKey$1;
|
|
|
1173
1175
|
var hiddenKeys$2 = hiddenKeys$3;
|
|
1174
1176
|
|
|
1175
1177
|
var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
|
|
1176
|
-
var TypeError$2 = global$
|
|
1177
|
-
var WeakMap = global$
|
|
1178
|
+
var TypeError$2 = global$9.TypeError;
|
|
1179
|
+
var WeakMap = global$9.WeakMap;
|
|
1178
1180
|
var set, get, has;
|
|
1179
1181
|
|
|
1180
1182
|
var enforce = function (it) {
|
|
@@ -1192,9 +1194,9 @@ var getterFor = function (TYPE) {
|
|
|
1192
1194
|
|
|
1193
1195
|
if (NATIVE_WEAK_MAP || shared.state) {
|
|
1194
1196
|
var store = shared.state || (shared.state = new WeakMap());
|
|
1195
|
-
var wmget = uncurryThis$
|
|
1196
|
-
var wmhas = uncurryThis$
|
|
1197
|
-
var wmset = uncurryThis$
|
|
1197
|
+
var wmget = uncurryThis$6(store.get);
|
|
1198
|
+
var wmhas = uncurryThis$6(store.has);
|
|
1199
|
+
var wmset = uncurryThis$6(store.set);
|
|
1198
1200
|
set = function (it, metadata) {
|
|
1199
1201
|
if (wmhas(store, it)) throw new TypeError$2(OBJECT_ALREADY_INITIALIZED);
|
|
1200
1202
|
metadata.facade = it;
|
|
@@ -1236,7 +1238,7 @@ var DESCRIPTORS = descriptors;
|
|
|
1236
1238
|
var hasOwn$3 = hasOwnProperty_1;
|
|
1237
1239
|
|
|
1238
1240
|
var FunctionPrototype = Function.prototype;
|
|
1239
|
-
// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
|
|
1241
|
+
// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
|
|
1240
1242
|
var getDescriptor = DESCRIPTORS && Object.getOwnPropertyDescriptor;
|
|
1241
1243
|
|
|
1242
1244
|
var EXISTS = hasOwn$3(FunctionPrototype, 'name');
|
|
@@ -1250,7 +1252,7 @@ var functionName = {
|
|
|
1250
1252
|
CONFIGURABLE: CONFIGURABLE
|
|
1251
1253
|
};
|
|
1252
1254
|
|
|
1253
|
-
var global$
|
|
1255
|
+
var global$8 = global$r;
|
|
1254
1256
|
var isCallable$3 = isCallable$b;
|
|
1255
1257
|
var hasOwn$2 = hasOwnProperty_1;
|
|
1256
1258
|
var createNonEnumerableProperty$1 = createNonEnumerableProperty$3;
|
|
@@ -1281,7 +1283,7 @@ var TEMPLATE = String(String).split('String');
|
|
|
1281
1283
|
state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
|
|
1282
1284
|
}
|
|
1283
1285
|
}
|
|
1284
|
-
if (O === global$
|
|
1286
|
+
if (O === global$8) {
|
|
1285
1287
|
if (simple) O[key] = value;
|
|
1286
1288
|
else setGlobal$1(key, value);
|
|
1287
1289
|
return;
|
|
@@ -1318,7 +1320,7 @@ var min$1 = Math.min;
|
|
|
1318
1320
|
// Helper for a popular repeating case of the spec:
|
|
1319
1321
|
// Let integer be ? ToInteger(index).
|
|
1320
1322
|
// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
|
|
1321
|
-
var toAbsoluteIndex$
|
|
1323
|
+
var toAbsoluteIndex$3 = function (index, length) {
|
|
1322
1324
|
var integer = toIntegerOrInfinity$1(index);
|
|
1323
1325
|
return integer < 0 ? max$1(integer + length, 0) : min$1(integer, length);
|
|
1324
1326
|
};
|
|
@@ -1342,7 +1344,7 @@ var lengthOfArrayLike$4 = function (obj) {
|
|
|
1342
1344
|
};
|
|
1343
1345
|
|
|
1344
1346
|
var toIndexedObject$1 = toIndexedObject$3;
|
|
1345
|
-
var toAbsoluteIndex$
|
|
1347
|
+
var toAbsoluteIndex$2 = toAbsoluteIndex$3;
|
|
1346
1348
|
var lengthOfArrayLike$3 = lengthOfArrayLike$4;
|
|
1347
1349
|
|
|
1348
1350
|
// `Array.prototype.{ indexOf, includes }` methods implementation
|
|
@@ -1350,7 +1352,7 @@ var createMethod = function (IS_INCLUDES) {
|
|
|
1350
1352
|
return function ($this, el, fromIndex) {
|
|
1351
1353
|
var O = toIndexedObject$1($this);
|
|
1352
1354
|
var length = lengthOfArrayLike$3(O);
|
|
1353
|
-
var index = toAbsoluteIndex$
|
|
1355
|
+
var index = toAbsoluteIndex$2(fromIndex, length);
|
|
1354
1356
|
var value;
|
|
1355
1357
|
// Array#includes uses SameValueZero equality algorithm
|
|
1356
1358
|
// eslint-disable-next-line no-self-compare -- NaN check
|
|
@@ -1374,13 +1376,13 @@ var arrayIncludes = {
|
|
|
1374
1376
|
indexOf: createMethod(false)
|
|
1375
1377
|
};
|
|
1376
1378
|
|
|
1377
|
-
var uncurryThis$
|
|
1379
|
+
var uncurryThis$5 = functionUncurryThis;
|
|
1378
1380
|
var hasOwn$1 = hasOwnProperty_1;
|
|
1379
1381
|
var toIndexedObject = toIndexedObject$3;
|
|
1380
1382
|
var indexOf = arrayIncludes.indexOf;
|
|
1381
1383
|
var hiddenKeys$1 = hiddenKeys$3;
|
|
1382
1384
|
|
|
1383
|
-
var push$1 = uncurryThis$
|
|
1385
|
+
var push$1 = uncurryThis$5([].push);
|
|
1384
1386
|
|
|
1385
1387
|
var objectKeysInternal = function (object, names) {
|
|
1386
1388
|
var O = toIndexedObject(object);
|
|
@@ -1413,23 +1415,23 @@ var hiddenKeys = enumBugKeys.concat('length', 'prototype');
|
|
|
1413
1415
|
|
|
1414
1416
|
// `Object.getOwnPropertyNames` method
|
|
1415
1417
|
// https://tc39.es/ecma262/#sec-object.getownpropertynames
|
|
1416
|
-
// eslint-disable-next-line es/no-object-getownpropertynames -- safe
|
|
1418
|
+
// eslint-disable-next-line es-x/no-object-getownpropertynames -- safe
|
|
1417
1419
|
objectGetOwnPropertyNames.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
1418
1420
|
return internalObjectKeys(O, hiddenKeys);
|
|
1419
1421
|
};
|
|
1420
1422
|
|
|
1421
1423
|
var objectGetOwnPropertySymbols = {};
|
|
1422
1424
|
|
|
1423
|
-
// eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
|
|
1425
|
+
// eslint-disable-next-line es-x/no-object-getownpropertysymbols -- safe
|
|
1424
1426
|
objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
|
|
1425
1427
|
|
|
1426
1428
|
var getBuiltIn$1 = getBuiltIn$4;
|
|
1427
|
-
var uncurryThis$
|
|
1429
|
+
var uncurryThis$4 = functionUncurryThis;
|
|
1428
1430
|
var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
|
|
1429
1431
|
var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
|
|
1430
1432
|
var anObject$3 = anObject$5;
|
|
1431
1433
|
|
|
1432
|
-
var concat = uncurryThis$
|
|
1434
|
+
var concat = uncurryThis$4([].concat);
|
|
1433
1435
|
|
|
1434
1436
|
// all object keys, includes non-enumerable and symbols
|
|
1435
1437
|
var ownKeys$1 = getBuiltIn$1('Reflect', 'ownKeys') || function ownKeys(it) {
|
|
@@ -1478,7 +1480,7 @@ var POLYFILL = isForced$1.POLYFILL = 'P';
|
|
|
1478
1480
|
|
|
1479
1481
|
var isForced_1 = isForced$1;
|
|
1480
1482
|
|
|
1481
|
-
var global$
|
|
1483
|
+
var global$7 = global$r;
|
|
1482
1484
|
var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
|
|
1483
1485
|
var createNonEnumerableProperty = createNonEnumerableProperty$3;
|
|
1484
1486
|
var redefine = redefine$1.exports;
|
|
@@ -1507,11 +1509,11 @@ var _export = function (options, source) {
|
|
|
1507
1509
|
var STATIC = options.stat;
|
|
1508
1510
|
var FORCED, target, key, targetProperty, sourceProperty, descriptor;
|
|
1509
1511
|
if (GLOBAL) {
|
|
1510
|
-
target = global$
|
|
1512
|
+
target = global$7;
|
|
1511
1513
|
} else if (STATIC) {
|
|
1512
|
-
target = global$
|
|
1514
|
+
target = global$7[TARGET] || setGlobal(TARGET, {});
|
|
1513
1515
|
} else {
|
|
1514
|
-
target = (global$
|
|
1516
|
+
target = (global$7[TARGET] || {}).prototype;
|
|
1515
1517
|
}
|
|
1516
1518
|
if (target) for (key in source) {
|
|
1517
1519
|
sourceProperty = source[key];
|
|
@@ -1543,14 +1545,14 @@ test$1[TO_STRING_TAG$1] = 'z';
|
|
|
1543
1545
|
|
|
1544
1546
|
var toStringTagSupport = String(test$1) === '[object z]';
|
|
1545
1547
|
|
|
1546
|
-
var global$
|
|
1548
|
+
var global$6 = global$r;
|
|
1547
1549
|
var TO_STRING_TAG_SUPPORT = toStringTagSupport;
|
|
1548
1550
|
var isCallable$1 = isCallable$b;
|
|
1549
1551
|
var classofRaw = classofRaw$1;
|
|
1550
1552
|
var wellKnownSymbol$3 = wellKnownSymbol$6;
|
|
1551
1553
|
|
|
1552
1554
|
var TO_STRING_TAG = wellKnownSymbol$3('toStringTag');
|
|
1553
|
-
var Object$1 = global$
|
|
1555
|
+
var Object$1 = global$6.Object;
|
|
1554
1556
|
|
|
1555
1557
|
// ES3 wrong here
|
|
1556
1558
|
var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
|
|
@@ -1574,10 +1576,10 @@ var classof$3 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
|
|
|
1574
1576
|
: (result = classofRaw(O)) == 'Object' && isCallable$1(O.callee) ? 'Arguments' : result;
|
|
1575
1577
|
};
|
|
1576
1578
|
|
|
1577
|
-
var global$
|
|
1579
|
+
var global$5 = global$r;
|
|
1578
1580
|
var classof$2 = classof$3;
|
|
1579
1581
|
|
|
1580
|
-
var String$1 = global$
|
|
1582
|
+
var String$1 = global$5.String;
|
|
1581
1583
|
|
|
1582
1584
|
var toString$1 = function (argument) {
|
|
1583
1585
|
if (classof$2(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
|
|
@@ -1594,18 +1596,18 @@ var createProperty$2 = function (object, key, value) {
|
|
|
1594
1596
|
else object[propertyKey] = value;
|
|
1595
1597
|
};
|
|
1596
1598
|
|
|
1597
|
-
var global$
|
|
1598
|
-
var toAbsoluteIndex = toAbsoluteIndex$
|
|
1599
|
+
var global$4 = global$r;
|
|
1600
|
+
var toAbsoluteIndex$1 = toAbsoluteIndex$3;
|
|
1599
1601
|
var lengthOfArrayLike$2 = lengthOfArrayLike$4;
|
|
1600
1602
|
var createProperty$1 = createProperty$2;
|
|
1601
1603
|
|
|
1602
|
-
var Array$2 = global$
|
|
1604
|
+
var Array$2 = global$4.Array;
|
|
1603
1605
|
var max = Math.max;
|
|
1604
1606
|
|
|
1605
1607
|
var arraySliceSimple = function (O, start, end) {
|
|
1606
1608
|
var length = lengthOfArrayLike$2(O);
|
|
1607
|
-
var k = toAbsoluteIndex(start, length);
|
|
1608
|
-
var fin = toAbsoluteIndex(end === undefined ? length : end, length);
|
|
1609
|
+
var k = toAbsoluteIndex$1(start, length);
|
|
1610
|
+
var fin = toAbsoluteIndex$1(end === undefined ? length : end, length);
|
|
1609
1611
|
var result = Array$2(max(fin - k, 0));
|
|
1610
1612
|
for (var n = 0; k < fin; k++, n++) createProperty$1(result, n, O[k]);
|
|
1611
1613
|
result.length = n;
|
|
@@ -1683,8 +1685,8 @@ var webkit = userAgent.match(/AppleWebKit\/(\d+)\./);
|
|
|
1683
1685
|
|
|
1684
1686
|
var engineWebkitVersion = !!webkit && +webkit[1];
|
|
1685
1687
|
|
|
1686
|
-
var $$
|
|
1687
|
-
var uncurryThis$
|
|
1688
|
+
var $$2 = _export;
|
|
1689
|
+
var uncurryThis$3 = functionUncurryThis;
|
|
1688
1690
|
var aCallable$2 = aCallable$4;
|
|
1689
1691
|
var toObject$1 = toObject$3;
|
|
1690
1692
|
var lengthOfArrayLike$1 = lengthOfArrayLike$4;
|
|
@@ -1698,8 +1700,8 @@ var V8 = engineV8Version;
|
|
|
1698
1700
|
var WEBKIT = engineWebkitVersion;
|
|
1699
1701
|
|
|
1700
1702
|
var test = [];
|
|
1701
|
-
var un$Sort = uncurryThis$
|
|
1702
|
-
var push = uncurryThis$
|
|
1703
|
+
var un$Sort = uncurryThis$3(test.sort);
|
|
1704
|
+
var push = uncurryThis$3(test.push);
|
|
1703
1705
|
|
|
1704
1706
|
// IE8-
|
|
1705
1707
|
var FAILS_ON_UNDEFINED = fails$1(function () {
|
|
@@ -1760,7 +1762,7 @@ var getSortCompare = function (comparefn) {
|
|
|
1760
1762
|
|
|
1761
1763
|
// `Array.prototype.sort` method
|
|
1762
1764
|
// https://tc39.es/ecma262/#sec-array.prototype.sort
|
|
1763
|
-
$$
|
|
1765
|
+
$$2({ target: 'Array', proto: true, forced: FORCED }, {
|
|
1764
1766
|
sort: function sort(comparefn) {
|
|
1765
1767
|
if (comparefn !== undefined) aCallable$2(comparefn);
|
|
1766
1768
|
|
|
@@ -3538,13 +3540,6 @@ var HebrewDateEvent = /*#__PURE__*/function (_Event) {
|
|
|
3538
3540
|
return HebrewDateEvent;
|
|
3539
3541
|
}(Event);
|
|
3540
3542
|
|
|
3541
|
-
var sun = {};
|
|
3542
|
-
|
|
3543
|
-
Object.defineProperty(sun, "__esModule", {
|
|
3544
|
-
value: true
|
|
3545
|
-
});
|
|
3546
|
-
var Sun_1 = sun.Sun = void 0;
|
|
3547
|
-
|
|
3548
3543
|
var Sun = /*#__PURE__*/function () {
|
|
3549
3544
|
function Sun(date, latitude, longitude) {
|
|
3550
3545
|
_classCallCheck(this, Sun);
|
|
@@ -3570,8 +3565,6 @@ var Sun = /*#__PURE__*/function () {
|
|
|
3570
3565
|
return Sun;
|
|
3571
3566
|
}();
|
|
3572
3567
|
|
|
3573
|
-
Sun_1 = sun.Sun = Sun;
|
|
3574
|
-
|
|
3575
3568
|
function formatDate(date, minutes) {
|
|
3576
3569
|
var seconds = (minutes - Math.floor(minutes)) * 60;
|
|
3577
3570
|
return new Date(Date.UTC(date.getFullYear(), date.getMonth(), date.getDate(), 0, minutes, seconds));
|
|
@@ -3769,6 +3762,114 @@ function calcSunriseSet(rise, angle, JD, date, latitude, longitude) // rise = 1
|
|
|
3769
3762
|
}
|
|
3770
3763
|
}
|
|
3771
3764
|
|
|
3765
|
+
var degreesBelowHorizon = {
|
|
3766
|
+
sunrise: 0.833,
|
|
3767
|
+
sunriseEnd: 0.3,
|
|
3768
|
+
twilight: 6,
|
|
3769
|
+
nauticalTwilight: 12,
|
|
3770
|
+
night: 18,
|
|
3771
|
+
goldenHour: -6
|
|
3772
|
+
};
|
|
3773
|
+
var SolarCalc = /*#__PURE__*/function () {
|
|
3774
|
+
function SolarCalc(date, latitude, longitude) {
|
|
3775
|
+
_classCallCheck(this, SolarCalc);
|
|
3776
|
+
|
|
3777
|
+
this.date = date;
|
|
3778
|
+
this.lat = latitude;
|
|
3779
|
+
this.longitude = longitude;
|
|
3780
|
+
this.sun = new Sun(date, latitude, longitude);
|
|
3781
|
+
}
|
|
3782
|
+
|
|
3783
|
+
_createClass(SolarCalc, [{
|
|
3784
|
+
key: "solarNoon",
|
|
3785
|
+
get: function get() {
|
|
3786
|
+
return this.sun.solarNoon;
|
|
3787
|
+
}
|
|
3788
|
+
}, {
|
|
3789
|
+
key: "sunrise",
|
|
3790
|
+
get: function get() {
|
|
3791
|
+
return this.sun.timeAtAngle(degreesBelowHorizon.sunrise, true);
|
|
3792
|
+
}
|
|
3793
|
+
}, {
|
|
3794
|
+
key: "sunset",
|
|
3795
|
+
get: function get() {
|
|
3796
|
+
return this.sun.timeAtAngle(degreesBelowHorizon.sunrise);
|
|
3797
|
+
}
|
|
3798
|
+
}, {
|
|
3799
|
+
key: "sunriseEnd",
|
|
3800
|
+
get: function get() {
|
|
3801
|
+
return this.sun.timeAtAngle(degreesBelowHorizon.sunriseEnd, true);
|
|
3802
|
+
}
|
|
3803
|
+
}, {
|
|
3804
|
+
key: "sunsetStart",
|
|
3805
|
+
get: function get() {
|
|
3806
|
+
return this.sun.timeAtAngle(degreesBelowHorizon.sunriseEnd, false);
|
|
3807
|
+
}
|
|
3808
|
+
}, {
|
|
3809
|
+
key: "civilDawn",
|
|
3810
|
+
get: function get() {
|
|
3811
|
+
return this.sun.timeAtAngle(degreesBelowHorizon.twilight, true);
|
|
3812
|
+
}
|
|
3813
|
+
}, {
|
|
3814
|
+
key: "dawn",
|
|
3815
|
+
get: function get() {
|
|
3816
|
+
return this.civilDawn;
|
|
3817
|
+
}
|
|
3818
|
+
}, {
|
|
3819
|
+
key: "civilDusk",
|
|
3820
|
+
get: function get() {
|
|
3821
|
+
return this.sun.timeAtAngle(degreesBelowHorizon.twilight, false);
|
|
3822
|
+
}
|
|
3823
|
+
}, {
|
|
3824
|
+
key: "dusk",
|
|
3825
|
+
get: function get() {
|
|
3826
|
+
return this.civilDusk;
|
|
3827
|
+
}
|
|
3828
|
+
}, {
|
|
3829
|
+
key: "nauticalDawn",
|
|
3830
|
+
get: function get() {
|
|
3831
|
+
return this.sun.timeAtAngle(degreesBelowHorizon.nauticalTwilight, true);
|
|
3832
|
+
}
|
|
3833
|
+
}, {
|
|
3834
|
+
key: "nauticalDusk",
|
|
3835
|
+
get: function get() {
|
|
3836
|
+
return this.sun.timeAtAngle(degreesBelowHorizon.nauticalTwilight, false);
|
|
3837
|
+
}
|
|
3838
|
+
}, {
|
|
3839
|
+
key: "nightStart",
|
|
3840
|
+
get: function get() {
|
|
3841
|
+
return this.astronomicalDusk;
|
|
3842
|
+
}
|
|
3843
|
+
}, {
|
|
3844
|
+
key: "astronomicalDusk",
|
|
3845
|
+
get: function get() {
|
|
3846
|
+
return this.sun.timeAtAngle(degreesBelowHorizon.night, false);
|
|
3847
|
+
}
|
|
3848
|
+
}, {
|
|
3849
|
+
key: "astronomicalDawn",
|
|
3850
|
+
get: function get() {
|
|
3851
|
+
return this.sun.timeAtAngle(degreesBelowHorizon.night, true);
|
|
3852
|
+
}
|
|
3853
|
+
}, {
|
|
3854
|
+
key: "nightEnd",
|
|
3855
|
+
get: function get() {
|
|
3856
|
+
return this.astronomicalDawn;
|
|
3857
|
+
}
|
|
3858
|
+
}, {
|
|
3859
|
+
key: "goldenHourStart",
|
|
3860
|
+
get: function get() {
|
|
3861
|
+
return this.sun.timeAtAngle(degreesBelowHorizon.goldenHour, false);
|
|
3862
|
+
}
|
|
3863
|
+
}, {
|
|
3864
|
+
key: "goldenHourEnd",
|
|
3865
|
+
get: function get() {
|
|
3866
|
+
return this.sun.timeAtAngle(degreesBelowHorizon.goldenHour, true);
|
|
3867
|
+
}
|
|
3868
|
+
}]);
|
|
3869
|
+
|
|
3870
|
+
return SolarCalc;
|
|
3871
|
+
}();
|
|
3872
|
+
|
|
3772
3873
|
var _formatters = {};
|
|
3773
3874
|
/**
|
|
3774
3875
|
* @private
|
|
@@ -3907,7 +4008,8 @@ var Zmanim = /*#__PURE__*/function () {
|
|
|
3907
4008
|
|
|
3908
4009
|
var dt = greg.isDate(date) ? date : HDate.isHDate(date) ? date.greg() : throwTypeError$2("invalid date: ".concat(date));
|
|
3909
4010
|
this.date = dt;
|
|
3910
|
-
this.
|
|
4011
|
+
this.solarCalc = new SolarCalc(this.date, latitude, longitude);
|
|
4012
|
+
this.sun = this.solarCalc.sun;
|
|
3911
4013
|
this.latitude = latitude;
|
|
3912
4014
|
this.longitude = longitude;
|
|
3913
4015
|
}
|
|
@@ -3921,52 +4023,64 @@ var Zmanim = /*#__PURE__*/function () {
|
|
|
3921
4023
|
key: "suntime",
|
|
3922
4024
|
value: function suntime() {
|
|
3923
4025
|
return {
|
|
3924
|
-
solarNoon: this.
|
|
4026
|
+
solarNoon: this.solarCalc.solarNoon,
|
|
3925
4027
|
sunrise: this.sunrise(),
|
|
3926
4028
|
sunset: this.sunset(),
|
|
3927
|
-
sunriseEnd: this.
|
|
3928
|
-
sunsetStart: this.
|
|
4029
|
+
sunriseEnd: this.solarCalc.sunriseEnd,
|
|
4030
|
+
sunsetStart: this.solarCalc.sunsetStart,
|
|
3929
4031
|
dawn: this.dawn(),
|
|
3930
4032
|
dusk: this.dusk(),
|
|
3931
|
-
nauticalDawn: this.
|
|
3932
|
-
nauticalDusk: this.
|
|
3933
|
-
nightEnd: this.
|
|
3934
|
-
night: this.
|
|
3935
|
-
goldenHourEnd: this.
|
|
3936
|
-
goldenHour: this.
|
|
4033
|
+
nauticalDawn: this.solarCalc.nauticalDawn,
|
|
4034
|
+
nauticalDusk: this.solarCalc.nauticalDusk,
|
|
4035
|
+
nightEnd: this.solarCalc.nightEnd,
|
|
4036
|
+
night: this.solarCalc.nightStart,
|
|
4037
|
+
goldenHourEnd: this.solarCalc.goldenHourEnd,
|
|
4038
|
+
goldenHour: this.solarCalc.goldenHourStart,
|
|
3937
4039
|
alotHaShachar: this.alotHaShachar(),
|
|
3938
4040
|
misheyakir: this.misheyakir(),
|
|
3939
4041
|
misheyakirMachmir: this.misheyakirMachmir(),
|
|
3940
4042
|
tzeit: this.tzeit()
|
|
3941
4043
|
};
|
|
3942
4044
|
}
|
|
3943
|
-
/**
|
|
4045
|
+
/**
|
|
4046
|
+
* Upper edge of the Sun appears over the eastern horizon in the morning (0.833° above horizon)
|
|
4047
|
+
* @return {Date}
|
|
4048
|
+
*/
|
|
3944
4049
|
|
|
3945
4050
|
}, {
|
|
3946
4051
|
key: "sunrise",
|
|
3947
4052
|
value: function sunrise() {
|
|
3948
4053
|
return this.sun.timeAtAngle(0.833333, true);
|
|
3949
4054
|
}
|
|
3950
|
-
/**
|
|
4055
|
+
/**
|
|
4056
|
+
* When the upper edge of the Sun disappears below the horizon (0.833° below horizon)
|
|
4057
|
+
* @return {Date}
|
|
4058
|
+
*/
|
|
3951
4059
|
|
|
3952
4060
|
}, {
|
|
3953
4061
|
key: "sunset",
|
|
3954
4062
|
value: function sunset() {
|
|
3955
4063
|
return this.sun.timeAtAngle(0.833333, false);
|
|
3956
4064
|
}
|
|
3957
|
-
/**
|
|
4065
|
+
/**
|
|
4066
|
+
* Civil dawn; Sun is 6° below the horizon in the morning
|
|
4067
|
+
* @return {Date}
|
|
4068
|
+
*/
|
|
3958
4069
|
|
|
3959
4070
|
}, {
|
|
3960
4071
|
key: "dawn",
|
|
3961
4072
|
value: function dawn() {
|
|
3962
|
-
return this.
|
|
4073
|
+
return this.solarCalc.dawn;
|
|
3963
4074
|
}
|
|
3964
|
-
/**
|
|
4075
|
+
/**
|
|
4076
|
+
* Civil dusk; Sun is 6° below the horizon in the evening
|
|
4077
|
+
* @return {Date}
|
|
4078
|
+
*/
|
|
3965
4079
|
|
|
3966
4080
|
}, {
|
|
3967
4081
|
key: "dusk",
|
|
3968
4082
|
value: function dusk() {
|
|
3969
|
-
return this.
|
|
4083
|
+
return this.solarCalc.dusk;
|
|
3970
4084
|
}
|
|
3971
4085
|
/** @return {number} */
|
|
3972
4086
|
|
|
@@ -4018,42 +4132,60 @@ var Zmanim = /*#__PURE__*/function () {
|
|
|
4018
4132
|
value: function hourOffset(hours) {
|
|
4019
4133
|
return new Date(this.sunrise().getTime() + this.hour() * hours);
|
|
4020
4134
|
}
|
|
4021
|
-
/**
|
|
4135
|
+
/**
|
|
4136
|
+
* Midday – Chatzot; Sunrise plus 6 halachic hours
|
|
4137
|
+
* @return {Date}
|
|
4138
|
+
*/
|
|
4022
4139
|
|
|
4023
4140
|
}, {
|
|
4024
4141
|
key: "chatzot",
|
|
4025
4142
|
value: function chatzot() {
|
|
4026
4143
|
return this.hourOffset(6);
|
|
4027
4144
|
}
|
|
4028
|
-
/**
|
|
4145
|
+
/**
|
|
4146
|
+
* Midnight – Chatzot; Sunset plus 6 halachic hours
|
|
4147
|
+
* @return {Date}
|
|
4148
|
+
*/
|
|
4029
4149
|
|
|
4030
4150
|
}, {
|
|
4031
4151
|
key: "chatzotNight",
|
|
4032
4152
|
value: function chatzotNight() {
|
|
4033
4153
|
return new Date(this.sunrise().getTime() - this.nightHour() * 6);
|
|
4034
4154
|
}
|
|
4035
|
-
/**
|
|
4155
|
+
/**
|
|
4156
|
+
* Dawn – Alot haShachar; Sun is 16.1° below the horizon in the morning
|
|
4157
|
+
* @return {Date}
|
|
4158
|
+
*/
|
|
4036
4159
|
|
|
4037
4160
|
}, {
|
|
4038
4161
|
key: "alotHaShachar",
|
|
4039
4162
|
value: function alotHaShachar() {
|
|
4040
4163
|
return this.sun.timeAtAngle(16.1, true);
|
|
4041
4164
|
}
|
|
4042
|
-
/**
|
|
4165
|
+
/**
|
|
4166
|
+
* Earliest talis & tefillin – Misheyakir; Sun is 11.5° below the horizon in the morning
|
|
4167
|
+
* @return {Date}
|
|
4168
|
+
*/
|
|
4043
4169
|
|
|
4044
4170
|
}, {
|
|
4045
4171
|
key: "misheyakir",
|
|
4046
4172
|
value: function misheyakir() {
|
|
4047
4173
|
return this.sun.timeAtAngle(11.5, true);
|
|
4048
4174
|
}
|
|
4049
|
-
/**
|
|
4175
|
+
/**
|
|
4176
|
+
* Earliest talis & tefillin – Misheyakir Machmir; Sun is 10.2° below the horizon in the morning
|
|
4177
|
+
* @return {Date}
|
|
4178
|
+
*/
|
|
4050
4179
|
|
|
4051
4180
|
}, {
|
|
4052
4181
|
key: "misheyakirMachmir",
|
|
4053
4182
|
value: function misheyakirMachmir() {
|
|
4054
4183
|
return this.sun.timeAtAngle(10.2, true);
|
|
4055
4184
|
}
|
|
4056
|
-
/**
|
|
4185
|
+
/**
|
|
4186
|
+
* Latest Shema (Gra); Sunrise plus 3 halachic hours, according to the Gra
|
|
4187
|
+
* @return {Date}
|
|
4188
|
+
*/
|
|
4057
4189
|
|
|
4058
4190
|
}, {
|
|
4059
4191
|
key: "sofZmanShma",
|
|
@@ -4061,7 +4193,10 @@ var Zmanim = /*#__PURE__*/function () {
|
|
|
4061
4193
|
// Gra
|
|
4062
4194
|
return this.hourOffset(3);
|
|
4063
4195
|
}
|
|
4064
|
-
/**
|
|
4196
|
+
/**
|
|
4197
|
+
* Latest Shacharit (Gra); Sunrise plus 4 halachic hours, according to the Gra
|
|
4198
|
+
* @return {Date}
|
|
4199
|
+
*/
|
|
4065
4200
|
|
|
4066
4201
|
}, {
|
|
4067
4202
|
key: "sofZmanTfilla",
|
|
@@ -4069,21 +4204,60 @@ var Zmanim = /*#__PURE__*/function () {
|
|
|
4069
4204
|
// Gra
|
|
4070
4205
|
return this.hourOffset(4);
|
|
4071
4206
|
}
|
|
4072
|
-
/**
|
|
4207
|
+
/**
|
|
4208
|
+
* Latest Shema (MGA); Sunrise plus 3 halachic hours, according to Magen Avraham
|
|
4209
|
+
* @return {Date}
|
|
4210
|
+
*/
|
|
4211
|
+
|
|
4212
|
+
}, {
|
|
4213
|
+
key: "sofZmanShmaMGA",
|
|
4214
|
+
value: function sofZmanShmaMGA() {
|
|
4215
|
+
// Magen Avraham
|
|
4216
|
+
var alot72 = this.sunriseOffset(-72);
|
|
4217
|
+
var tzeit72 = this.sunsetOffset(72);
|
|
4218
|
+
var temporalHour = (tzeit72 - alot72) / 12; // ms in hour
|
|
4219
|
+
|
|
4220
|
+
return new Date(alot72.getTime() + 3 * temporalHour);
|
|
4221
|
+
}
|
|
4222
|
+
/**
|
|
4223
|
+
* Latest Shacharit (MGA); Sunrise plus 4 halachic hours, according to Magen Avraham
|
|
4224
|
+
* @return {Date}
|
|
4225
|
+
*/
|
|
4226
|
+
|
|
4227
|
+
}, {
|
|
4228
|
+
key: "sofZmanTfillaMGA",
|
|
4229
|
+
value: function sofZmanTfillaMGA() {
|
|
4230
|
+
// Magen Avraham
|
|
4231
|
+
var alot72 = this.sunriseOffset(-72);
|
|
4232
|
+
var tzeit72 = this.sunsetOffset(72);
|
|
4233
|
+
var temporalHour = (tzeit72 - alot72) / 12; // ms in hour
|
|
4234
|
+
|
|
4235
|
+
return new Date(alot72.getTime() + 4 * temporalHour);
|
|
4236
|
+
}
|
|
4237
|
+
/**
|
|
4238
|
+
* Earliest Mincha – Mincha Gedola; Sunrise plus 6.5 halachic hours
|
|
4239
|
+
* @return {Date}
|
|
4240
|
+
*/
|
|
4073
4241
|
|
|
4074
4242
|
}, {
|
|
4075
4243
|
key: "minchaGedola",
|
|
4076
4244
|
value: function minchaGedola() {
|
|
4077
4245
|
return this.hourOffset(6.5);
|
|
4078
4246
|
}
|
|
4079
|
-
/**
|
|
4247
|
+
/**
|
|
4248
|
+
* Preferable earliest time to recite Minchah – Mincha Ketana; Sunrise plus 9.5 halachic hours
|
|
4249
|
+
* @return {Date}
|
|
4250
|
+
*/
|
|
4080
4251
|
|
|
4081
4252
|
}, {
|
|
4082
4253
|
key: "minchaKetana",
|
|
4083
4254
|
value: function minchaKetana() {
|
|
4084
4255
|
return this.hourOffset(9.5);
|
|
4085
4256
|
}
|
|
4086
|
-
/**
|
|
4257
|
+
/**
|
|
4258
|
+
* Plag haMincha; Sunrise plus 10.75 halachic hours
|
|
4259
|
+
* @return {Date}
|
|
4260
|
+
*/
|
|
4087
4261
|
|
|
4088
4262
|
}, {
|
|
4089
4263
|
key: "plagHaMincha",
|
|
@@ -4102,14 +4276,20 @@ var Zmanim = /*#__PURE__*/function () {
|
|
|
4102
4276
|
var angle = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 8.5;
|
|
4103
4277
|
return this.sun.timeAtAngle(angle, false);
|
|
4104
4278
|
}
|
|
4105
|
-
/**
|
|
4279
|
+
/**
|
|
4280
|
+
* Alias for sunrise
|
|
4281
|
+
* @return {Date}
|
|
4282
|
+
*/
|
|
4106
4283
|
|
|
4107
4284
|
}, {
|
|
4108
4285
|
key: "neitzHaChama",
|
|
4109
4286
|
value: function neitzHaChama() {
|
|
4110
4287
|
return this.sunrise();
|
|
4111
4288
|
}
|
|
4112
|
-
/**
|
|
4289
|
+
/**
|
|
4290
|
+
* Alias for sunset
|
|
4291
|
+
* @return {Date}
|
|
4292
|
+
*/
|
|
4113
4293
|
|
|
4114
4294
|
}, {
|
|
4115
4295
|
key: "shkiah",
|
|
@@ -4124,14 +4304,37 @@ var Zmanim = /*#__PURE__*/function () {
|
|
|
4124
4304
|
*/
|
|
4125
4305
|
|
|
4126
4306
|
}, {
|
|
4127
|
-
key: "
|
|
4307
|
+
key: "sunriseOffset",
|
|
4128
4308
|
value:
|
|
4129
4309
|
/**
|
|
4130
|
-
* Returns
|
|
4131
|
-
* @param {number} offset
|
|
4310
|
+
* Returns sunrise + `offset` minutes (either positive or negative).
|
|
4311
|
+
* @param {number} offset minutes
|
|
4132
4312
|
* @return {Date}
|
|
4133
4313
|
*/
|
|
4134
|
-
function
|
|
4314
|
+
function sunriseOffset(offset) {
|
|
4315
|
+
var sunrise = this.sunrise();
|
|
4316
|
+
|
|
4317
|
+
if (isNaN(sunrise.getTime())) {
|
|
4318
|
+
return sunrise;
|
|
4319
|
+
} // For positive offsets only, round up to next minute if needed
|
|
4320
|
+
|
|
4321
|
+
|
|
4322
|
+
if (offset > 0 && sunrise.getSeconds() >= 30) {
|
|
4323
|
+
offset++;
|
|
4324
|
+
}
|
|
4325
|
+
|
|
4326
|
+
sunrise.setSeconds(0);
|
|
4327
|
+
return new Date(sunrise.getTime() + offset * 60 * 1000);
|
|
4328
|
+
}
|
|
4329
|
+
/**
|
|
4330
|
+
* Returns sunset + `offset` minutes (either positive or negative).
|
|
4331
|
+
* @param {number} offset minutes
|
|
4332
|
+
* @return {Date}
|
|
4333
|
+
*/
|
|
4334
|
+
|
|
4335
|
+
}, {
|
|
4336
|
+
key: "sunsetOffset",
|
|
4337
|
+
value: function sunsetOffset(offset) {
|
|
4135
4338
|
var sunset = this.sunset();
|
|
4136
4339
|
|
|
4137
4340
|
if (isNaN(sunset.getTime())) {
|
|
@@ -5051,19 +5254,41 @@ var MoladEvent = /*#__PURE__*/function (_Event) {
|
|
|
5051
5254
|
return MoladEvent;
|
|
5052
5255
|
}(Event);
|
|
5053
5256
|
|
|
5054
|
-
var
|
|
5055
|
-
|
|
5056
|
-
|
|
5057
|
-
|
|
5058
|
-
|
|
5059
|
-
|
|
5060
|
-
|
|
5061
|
-
|
|
5062
|
-
|
|
5063
|
-
|
|
5064
|
-
|
|
5065
|
-
|
|
5257
|
+
var $$1 = _export;
|
|
5258
|
+
var global$3 = global$r;
|
|
5259
|
+
var uncurryThis$2 = functionUncurryThis;
|
|
5260
|
+
var toAbsoluteIndex = toAbsoluteIndex$3;
|
|
5261
|
+
|
|
5262
|
+
var RangeError$1 = global$3.RangeError;
|
|
5263
|
+
var fromCharCode = String.fromCharCode;
|
|
5264
|
+
// eslint-disable-next-line es-x/no-string-fromcodepoint -- required for testing
|
|
5265
|
+
var $fromCodePoint = String.fromCodePoint;
|
|
5266
|
+
var join = uncurryThis$2([].join);
|
|
5267
|
+
|
|
5268
|
+
// length should be 1, old FF problem
|
|
5269
|
+
var INCORRECT_LENGTH = !!$fromCodePoint && $fromCodePoint.length != 1;
|
|
5270
|
+
|
|
5271
|
+
// `String.fromCodePoint` method
|
|
5272
|
+
// https://tc39.es/ecma262/#sec-string.fromcodepoint
|
|
5273
|
+
$$1({ target: 'String', stat: true, forced: INCORRECT_LENGTH }, {
|
|
5274
|
+
// eslint-disable-next-line no-unused-vars -- required for `.length`
|
|
5275
|
+
fromCodePoint: function fromCodePoint(x) {
|
|
5276
|
+
var elements = [];
|
|
5277
|
+
var length = arguments.length;
|
|
5278
|
+
var i = 0;
|
|
5279
|
+
var code;
|
|
5280
|
+
while (length > i) {
|
|
5281
|
+
code = +arguments[i++];
|
|
5282
|
+
if (toAbsoluteIndex(code, 0x10FFFF) !== code) throw RangeError$1(code + ' is not a valid code point');
|
|
5283
|
+
elements[i] = code < 0x10000
|
|
5284
|
+
? fromCharCode(code)
|
|
5285
|
+
: fromCharCode(((code -= 0x10000) >> 10) + 0xD800, code % 0x400 + 0xDC00);
|
|
5286
|
+
} return join(elements, '');
|
|
5287
|
+
}
|
|
5288
|
+
});
|
|
5066
5289
|
|
|
5290
|
+
var sefirot = [null, 'Lovingkindness', 'Might', 'Beauty', 'Eternity', 'Splendor', 'Foundation', 'Majesty'];
|
|
5291
|
+
var sefirotTranslit = [null, 'Chesed', 'Gevurah', 'Tiferet', 'Netzach', 'Hod', 'Yesod', 'Malkhut'];
|
|
5067
5292
|
/** Represents a day 1-49 of counting the Omer from Pesach to Shavuot */
|
|
5068
5293
|
|
|
5069
5294
|
var OmerEvent = /*#__PURE__*/function (_Event) {
|
|
@@ -5083,24 +5308,54 @@ var OmerEvent = /*#__PURE__*/function (_Event) {
|
|
|
5083
5308
|
_this = _super.call(this, date, "Omer ".concat(omerDay), flags.OMER_COUNT, {
|
|
5084
5309
|
omer: omerDay
|
|
5085
5310
|
});
|
|
5311
|
+
|
|
5312
|
+
if (omerDay < 1 || omerDay > 49) {
|
|
5313
|
+
throw new RangeError("Invalid Omer day ".concat(omerDay));
|
|
5314
|
+
}
|
|
5315
|
+
|
|
5086
5316
|
_this.weekNumber = Math.floor((omerDay - 1) / 7) + 1;
|
|
5087
5317
|
_this.daysWithinWeeks = omerDay % 7 || 7;
|
|
5088
|
-
|
|
5089
|
-
var dayWithinWeek = sefirot[_this.daysWithinWeeks];
|
|
5090
|
-
var heWeek = Locale.gettext(week, 'he');
|
|
5091
|
-
var heDayWithinWeek = Locale.gettext(dayWithinWeek, 'he');
|
|
5092
|
-
var hePrefix = 'שֶׁבַּ';
|
|
5093
|
-
_this.memo = "".concat(dayWithinWeek, " that is in ").concat(week, " / ").concat(heDayWithinWeek, " ").concat(hePrefix).concat(heWeek).normalize();
|
|
5318
|
+
_this.memo = [_this.sefira('en'), _this.sefira('he'), _this.sefira('translit')].join('\n');
|
|
5094
5319
|
return _this;
|
|
5095
5320
|
}
|
|
5096
5321
|
/**
|
|
5097
|
-
* @
|
|
5098
|
-
* @param {string} [locale] Optional locale name (defaults to active locale).
|
|
5322
|
+
* @param {string} lang
|
|
5099
5323
|
* @return {string}
|
|
5100
5324
|
*/
|
|
5101
5325
|
|
|
5102
5326
|
|
|
5103
5327
|
_createClass(OmerEvent, [{
|
|
5328
|
+
key: "sefira",
|
|
5329
|
+
value: function sefira() {
|
|
5330
|
+
var lang = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'en';
|
|
5331
|
+
var week = sefirot[this.weekNumber];
|
|
5332
|
+
var dayWithinWeek = sefirot[this.daysWithinWeeks];
|
|
5333
|
+
|
|
5334
|
+
switch (lang) {
|
|
5335
|
+
case 'he':
|
|
5336
|
+
var heWeek = Locale.gettext(week, 'he');
|
|
5337
|
+
var heDayWithinWeek = Locale.gettext(dayWithinWeek, 'he');
|
|
5338
|
+
var hePrefix = this.weekNumber === 2 || this.weekNumber === 6 ? 'שֶׁבִּ' : 'שֶׁבְּ';
|
|
5339
|
+
return "".concat(heDayWithinWeek, " ").concat(hePrefix).concat(heWeek).normalize();
|
|
5340
|
+
|
|
5341
|
+
case 'translit':
|
|
5342
|
+
var translitWeek = sefirotTranslit[this.weekNumber];
|
|
5343
|
+
var translitDayWithinWeek = sefirotTranslit[this.daysWithinWeeks];
|
|
5344
|
+
var translitPrefix = this.weekNumber === 2 || this.weekNumber === 6 ? 'shebi' : "sheb'";
|
|
5345
|
+
return "".concat(translitDayWithinWeek, " ").concat(translitPrefix).concat(translitWeek);
|
|
5346
|
+
|
|
5347
|
+
case 'en':
|
|
5348
|
+
default:
|
|
5349
|
+
return "".concat(dayWithinWeek, " within ").concat(week);
|
|
5350
|
+
}
|
|
5351
|
+
}
|
|
5352
|
+
/**
|
|
5353
|
+
* @todo use gettext()
|
|
5354
|
+
* @param {string} [locale] Optional locale name (defaults to active locale).
|
|
5355
|
+
* @return {string}
|
|
5356
|
+
*/
|
|
5357
|
+
|
|
5358
|
+
}, {
|
|
5104
5359
|
key: "render",
|
|
5105
5360
|
value: function render(locale) {
|
|
5106
5361
|
var omer = this.omer;
|
|
@@ -5125,9 +5380,16 @@ var OmerEvent = /*#__PURE__*/function (_Event) {
|
|
|
5125
5380
|
value: function getEmoji() {
|
|
5126
5381
|
if (typeof this.emoji === 'string') return this.emoji;
|
|
5127
5382
|
var number = this.omer;
|
|
5128
|
-
|
|
5129
|
-
|
|
5130
|
-
|
|
5383
|
+
|
|
5384
|
+
if (number <= 20) {
|
|
5385
|
+
return String.fromCodePoint(9312 + number - 1);
|
|
5386
|
+
} else if (number <= 35) {
|
|
5387
|
+
// between 21 and 35 inclusive
|
|
5388
|
+
return String.fromCodePoint(12881 + number - 21);
|
|
5389
|
+
} else {
|
|
5390
|
+
// between 36 and 49 inclusive
|
|
5391
|
+
return String.fromCodePoint(12977 + number - 36);
|
|
5392
|
+
}
|
|
5131
5393
|
}
|
|
5132
5394
|
/** @return {number} */
|
|
5133
5395
|
|
|
@@ -5508,7 +5770,7 @@ var getIteratorMethod$2 = function (it) {
|
|
|
5508
5770
|
|| Iterators[classof(it)];
|
|
5509
5771
|
};
|
|
5510
5772
|
|
|
5511
|
-
var global$2 = global$
|
|
5773
|
+
var global$2 = global$r;
|
|
5512
5774
|
var call$1 = functionCall;
|
|
5513
5775
|
var aCallable = aCallable$4;
|
|
5514
5776
|
var anObject = anObject$5;
|
|
@@ -5523,7 +5785,7 @@ var getIterator$1 = function (argument, usingIterator) {
|
|
|
5523
5785
|
throw TypeError$1(tryToString(argument) + ' is not iterable');
|
|
5524
5786
|
};
|
|
5525
5787
|
|
|
5526
|
-
var global$1 = global$
|
|
5788
|
+
var global$1 = global$r;
|
|
5527
5789
|
var bind = functionBindContext;
|
|
5528
5790
|
var call = functionCall;
|
|
5529
5791
|
var toObject = toObject$3;
|
|
@@ -5588,7 +5850,7 @@ try {
|
|
|
5588
5850
|
iteratorWithReturn[ITERATOR] = function () {
|
|
5589
5851
|
return this;
|
|
5590
5852
|
};
|
|
5591
|
-
// eslint-disable-next-line es/no-array-from, no-throw-literal -- required for testing
|
|
5853
|
+
// eslint-disable-next-line es-x/no-array-from, no-throw-literal -- required for testing
|
|
5592
5854
|
Array.from(iteratorWithReturn, function () { throw 2; });
|
|
5593
5855
|
} catch (error) { /* empty */ }
|
|
5594
5856
|
|
|
@@ -5614,7 +5876,7 @@ var from = arrayFrom;
|
|
|
5614
5876
|
var checkCorrectnessOfIteration = checkCorrectnessOfIteration$1;
|
|
5615
5877
|
|
|
5616
5878
|
var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) {
|
|
5617
|
-
// eslint-disable-next-line es/no-array-from -- required for testing
|
|
5879
|
+
// eslint-disable-next-line es-x/no-array-from -- required for testing
|
|
5618
5880
|
Array.from(iterable);
|
|
5619
5881
|
});
|
|
5620
5882
|
|
|
@@ -6559,10 +6821,10 @@ function getHolidaysForYear_(year) {
|
|
|
6559
6821
|
}], [3 + (RH.getDay() == THU), TISHREI$1, 'Tzom Gedaliah', MINOR_FAST$1], [9, TISHREI$1, 'Erev Yom Kippur', EREV$1 | LIGHT_CANDLES$1]]); // first SAT after RH
|
|
6560
6822
|
|
|
6561
6823
|
add(new HolidayEvent(new HDate(HDate.dayOnOrBefore(SAT$1, 7 + RH.abs())), 'Shabbat Shuva', SPECIAL_SHABBAT$1));
|
|
6562
|
-
addEvents(year, [[10, TISHREI$1, 'Yom Kippur', CHAG | YOM_TOV_ENDS$1 | MAJOR_FAST$1],
|
|
6824
|
+
addEvents(year, [[10, TISHREI$1, 'Yom Kippur', CHAG | YOM_TOV_ENDS$1 | MAJOR_FAST$1], // Attributes for Israel and Diaspora are different
|
|
6825
|
+
[14, TISHREI$1, 'Erev Sukkot', EREV$1 | LIGHT_CANDLES$1 | CHUL_ONLY$1, {
|
|
6563
6826
|
emoji: emojiSukkot
|
|
6564
|
-
}],
|
|
6565
|
-
[15, TISHREI$1, 'Sukkot I', CHAG | LIGHT_CANDLES_TZEIS$1 | CHUL_ONLY$1, {
|
|
6827
|
+
}], [15, TISHREI$1, 'Sukkot I', CHAG | LIGHT_CANDLES_TZEIS$1 | CHUL_ONLY$1, {
|
|
6566
6828
|
emoji: emojiSukkot
|
|
6567
6829
|
}], [16, TISHREI$1, 'Sukkot II', CHAG | YOM_TOV_ENDS$1 | CHUL_ONLY$1, {
|
|
6568
6830
|
emoji: emojiSukkot
|
|
@@ -6578,6 +6840,8 @@ function getHolidaysForYear_(year) {
|
|
|
6578
6840
|
}], [20, TISHREI$1, 'Sukkot VI (CH\'\'M)', CHUL_ONLY$1 | CHOL_HAMOED$1, {
|
|
6579
6841
|
cholHaMoedDay: 4,
|
|
6580
6842
|
emoji: emojiSukkot
|
|
6843
|
+
}], [14, TISHREI$1, 'Erev Sukkot', EREV$1 | LIGHT_CANDLES$1 | IL_ONLY$1, {
|
|
6844
|
+
emoji: emojiSukkot
|
|
6581
6845
|
}], [15, TISHREI$1, 'Sukkot I', CHAG | YOM_TOV_ENDS$1 | IL_ONLY$1, {
|
|
6582
6846
|
emoji: emojiSukkot
|
|
6583
6847
|
}], [16, TISHREI$1, 'Sukkot II (CH\'\'M)', IL_ONLY$1 | CHOL_HAMOED$1, {
|
|
@@ -6631,10 +6895,10 @@ function getHolidaysForYear_(year) {
|
|
|
6631
6895
|
emoji: '🎭️📜'
|
|
6632
6896
|
}), 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
|
|
6633
6897
|
pesach.prev().getDay() == SAT$1 ? pesach.onOrBefore(THU) : new HDate(14, NISAN$2, year), 'Ta\'anit Bechorot', MINOR_FAST$1));
|
|
6634
|
-
addEvents(year, [
|
|
6898
|
+
addEvents(year, [// Attributes for Israel and Diaspora are different
|
|
6899
|
+
[14, NISAN$2, 'Erev Pesach', EREV$1 | LIGHT_CANDLES$1 | IL_ONLY$1, {
|
|
6635
6900
|
emoji: '🫓🍷'
|
|
6636
|
-
}],
|
|
6637
|
-
[15, NISAN$2, 'Pesach I', CHAG | YOM_TOV_ENDS$1 | IL_ONLY$1, {
|
|
6901
|
+
}], [15, NISAN$2, 'Pesach I', CHAG | YOM_TOV_ENDS$1 | IL_ONLY$1, {
|
|
6638
6902
|
emoji: emojiPesach
|
|
6639
6903
|
}], [16, NISAN$2, 'Pesach II (CH\'\'M)', IL_ONLY$1 | CHOL_HAMOED$1, {
|
|
6640
6904
|
cholHaMoedDay: 1,
|
|
@@ -6653,6 +6917,8 @@ function getHolidaysForYear_(year) {
|
|
|
6653
6917
|
emoji: emojiPesach
|
|
6654
6918
|
}], [21, NISAN$2, 'Pesach VII', CHAG | YOM_TOV_ENDS$1 | IL_ONLY$1, {
|
|
6655
6919
|
emoji: emojiPesach
|
|
6920
|
+
}], [14, NISAN$2, 'Erev Pesach', EREV$1 | LIGHT_CANDLES$1 | CHUL_ONLY$1, {
|
|
6921
|
+
emoji: '🫓🍷'
|
|
6656
6922
|
}], [15, NISAN$2, 'Pesach I', CHAG | LIGHT_CANDLES_TZEIS$1 | CHUL_ONLY$1, {
|
|
6657
6923
|
emoji: '🫓🍷'
|
|
6658
6924
|
}], [16, NISAN$2, 'Pesach II', CHAG | YOM_TOV_ENDS$1 | CHUL_ONLY$1, {
|
|
@@ -6675,7 +6941,8 @@ function getHolidaysForYear_(year) {
|
|
|
6675
6941
|
emoji: emojiPesach
|
|
6676
6942
|
}], [14, IYYAR, 'Pesach Sheni', MINOR_HOLIDAY$1], [18, IYYAR, 'Lag BaOmer', MINOR_HOLIDAY$1, {
|
|
6677
6943
|
emoji: '🔥'
|
|
6678
|
-
}],
|
|
6944
|
+
}], // Attributes for Israel and Diaspora are different
|
|
6945
|
+
[5, SIVAN$1, 'Erev Shavuot', EREV$1 | LIGHT_CANDLES$1 | IL_ONLY$1, emojiShavuot], [6, SIVAN$1, 'Shavuot', CHAG | YOM_TOV_ENDS$1 | IL_ONLY$1, emojiShavuot], [5, SIVAN$1, 'Erev Shavuot', EREV$1 | LIGHT_CANDLES$1 | CHUL_ONLY$1, emojiShavuot], [6, SIVAN$1, 'Shavuot I', CHAG | LIGHT_CANDLES_TZEIS$1 | CHUL_ONLY$1, emojiShavuot], [7, SIVAN$1, 'Shavuot II', CHAG | YOM_TOV_ENDS$1 | CHUL_ONLY$1, emojiShavuot], [15, AV, 'Tu B\'Av', MINOR_HOLIDAY$1, {
|
|
6679
6946
|
emoji: '❤️'
|
|
6680
6947
|
}], [1, ELUL$1, 'Rosh Hashana LaBehemot', MINOR_HOLIDAY$1, {
|
|
6681
6948
|
emoji: '🐑'
|
|
@@ -7077,14 +7344,14 @@ function getBirthdayOrAnniversary_(hyear, gdate) {
|
|
|
7077
7344
|
return new HDate(day, month, hyear);
|
|
7078
7345
|
}
|
|
7079
7346
|
|
|
7080
|
-
var version="3.
|
|
7347
|
+
var version="3.35.0";
|
|
7081
7348
|
|
|
7082
7349
|
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};
|
|
7083
7350
|
|
|
7084
7351
|
Locale.addLocale('ashkenazi', poAshkenazi);
|
|
7085
7352
|
Locale.addLocale('a', poAshkenazi);
|
|
7086
7353
|
|
|
7087
|
-
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":["
|
|
7354
|
+
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};
|
|
7088
7355
|
|
|
7089
7356
|
Locale.addLocale('he', poHe);
|
|
7090
7357
|
Locale.addLocale('h', poHe);
|