UNPKG

react-day-picker

Version:

Customizable Date Picker for React

16 lines 570 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getDisplayMonths = getDisplayMonths; function getDisplayMonths(firstDisplayedMonth, calendarEndMonth, props, dateLib) { const { numberOfMonths = 1 } = props; const months = []; for (let i = 0; i < numberOfMonths; i++) { const month = dateLib.addMonths(firstDisplayedMonth, i); if (calendarEndMonth && month > calendarEndMonth) { break; } months.push(month); } return months; } //# sourceMappingURL=getDisplayMonths.js.map