swedish-holidays
Version:
Library for calculating the date of all swedish holidays for any given year.
16 lines • 728 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const holiday_names_sv_se_1 = __importDefault(require("../holiday-names.sv-se"));
const fixed_1 = __importDefault(require("./fixed"));
class TwelfthNight extends fixed_1.default {
constructor({ year, language = holiday_names_sv_se_1.default } = { language: holiday_names_sv_se_1.default }) {
super(TwelfthNight.day, TwelfthNight.month, language.twelfthNight, false, year);
}
}
exports.default = TwelfthNight;
TwelfthNight.day = 5;
TwelfthNight.month = 1;
//# sourceMappingURL=twelfth-night.js.map