@hebcal/hdate
Version:
converts between Hebrew and Gregorian dates using Rata Die (R.D.) algorithm by Dershowitz and Reingold
19 lines (16 loc) • 575 B
JavaScript
/*! @hebcal/hdate v0.14.4, distributed under GPLv2 https://www.gnu.org/licenses/gpl-2.0.txt */
import { abs2greg, daysInGregMonth, greg2abs, isDate, isGregLeapYear } from './greg.js';
/* eslint-disable @typescript-eslint/no-explicit-any, @typescript-eslint/no-namespace */
/**
* Gregorian date helper functions
*/
var greg;
(function (greg) {
})(greg || (greg = {}));
greg.abs2greg = abs2greg;
greg.daysInMonth = daysInGregMonth;
greg.greg2abs = greg2abs;
greg.isDate = isDate;
greg.isLeapYear = isGregLeapYear;
export { greg };
//# sourceMappingURL=gregNamespace.js.map