UNPKG

@daysnap/utils

Version:
9 lines (5 loc) 228 B
"use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/getDaysOfMonth.ts function getDaysOfMonth(year, month) { return new Date(year, month, 0).getDate(); } exports.getDaysOfMonth = getDaysOfMonth;