@hebcal/core 5.3.7 → 5.3.9
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 +20 -0
- package/dist/bundle.js +285 -101
- package/dist/bundle.min.js +2 -2
- package/dist/index.cjs +283 -99
- package/dist/index.mjs +283 -100
- package/hebcal.d.ts +9 -0
- package/package.json +2 -2
- package/po/he.po +1 -1
package/hebcal.d.ts
CHANGED
|
@@ -420,6 +420,15 @@ declare module '@hebcal/core' {
|
|
|
420
420
|
* These zmanim intentionally do not support elevation adjustment.
|
|
421
421
|
*/
|
|
422
422
|
constructor(gloc: GeoLocation, date: Date | HDate, useElevation?: boolean);
|
|
423
|
+
/**
|
|
424
|
+
* Returns `true` if elevation adjustment is enabled
|
|
425
|
+
* for zmanim support elevation adjustment
|
|
426
|
+
*/
|
|
427
|
+
getUseElevation(): boolean;
|
|
428
|
+
/**
|
|
429
|
+
* Enables or disables elevation adjustment for zmanim support elevation adjustment
|
|
430
|
+
*/
|
|
431
|
+
setUseElevation(useElevation: boolean): void;
|
|
423
432
|
|
|
424
433
|
/**
|
|
425
434
|
* Returns a string like "2022-04-01T13:06:00-11:00"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hebcal/core",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.9",
|
|
4
4
|
"author": "Michael J. Radwin (https://github.com/mjradwin)",
|
|
5
5
|
"contributors": [
|
|
6
6
|
"Eyal Schachter (https://github.com/Scimonster)",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
83
83
|
"@rollup/plugin-terser": "^0.4.4",
|
|
84
84
|
"ava": "^6.1.3",
|
|
85
|
-
"core-js": "^3.37.
|
|
85
|
+
"core-js": "^3.37.1",
|
|
86
86
|
"eslint": "^8.57.0",
|
|
87
87
|
"eslint-config-google": "^0.14.0",
|
|
88
88
|
"jsdoc": "^4.0.3",
|