UNPKG

react-day-picker

Version:

Customizable Date Picker for React

16 lines 480 B
import { enUS } from "../lib/locales.js"; /** * Format the month number for the dropdown option label. * * @defaultValue The localized month name * @group Formatters * @see https://daypicker.dev/docs/translation#custom-formatters */ export function formatMonthDropdown( /** The month number to format. */ monthNumber, /** The locale to use for formatting. */ locale = enUS) { return locale.localize?.month(monthNumber); } //# sourceMappingURL=formatMonthDropdown.js.map