UNPKG

@atlaskit/calendar

Version:

An interactive calendar for date selection experiences.

9 lines (8 loc) 203 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = getDaysInMonth; function getDaysInMonth(year, month) { return new Date(year, month + 1, 0).getDate(); }