"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getDaysInMonth = void 0;
function getDaysInMonth(date) {
var d = new Date(date);
return new Date(d.getFullYear(), d.getMonth() + 1, 0).getDate();
}
exports.getDaysInMonth = getDaysInMonth;