Favivon - Correção

This commit is contained in:
2026-05-30 19:59:39 -03:00
parent 76ddaa815d
commit d7dfd221f0
32859 changed files with 5459654 additions and 404 deletions
+36
View File
@@ -0,0 +1,36 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.MONTHS_PER_CYCLE = exports.MONTH_SEQUENCE_LEAP = exports.MONTH_SEQUENCE_COMMON = exports.HEBREW_EPOCH = exports.GREGORIAN_EPOCH = exports.MS_PER_DAY = void 0;
exports.MS_PER_DAY = 24 * 60 * 60 * 1000;
exports.GREGORIAN_EPOCH = Date.UTC(1, 0, 1);
exports.HEBREW_EPOCH = -2067381;
exports.MONTH_SEQUENCE_COMMON = [
"tishrei",
"cheshvan",
"kislev",
"tevet",
"shevat",
"adar",
"nisan",
"iyar",
"sivan",
"tamuz",
"av",
"elul",
];
exports.MONTH_SEQUENCE_LEAP = [
"tishrei",
"cheshvan",
"kislev",
"tevet",
"shevat",
"adarI",
"adar",
"nisan",
"iyar",
"sivan",
"tamuz",
"av",
"elul",
];
exports.MONTHS_PER_CYCLE = 235;