swedish-holidays
Version:
Library for calculating the date of all swedish holidays for any given year.
16 lines • 745 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 WalpurgisNight extends fixed_1.default {
constructor({ year, language = holiday_names_sv_se_1.default } = { language: holiday_names_sv_se_1.default }) {
super(WalpurgisNight.day, WalpurgisNight.month, language.walpurgisNight, false, year);
}
}
exports.default = WalpurgisNight;
WalpurgisNight.day = 30;
WalpurgisNight.month = 4;
//# sourceMappingURL=walpurgis-night.js.map