UNPKG

527 BPlain TextView Raw
1import type { DateFnsMonth } from "../lib/dateLib.js";
2import { enUS } from "../lib/locales.js";
3
4/**
5 * Format the month number for the dropdown option label.
6 *
7 * @defaultValue The localized month name
8 * @group Formatters
9 * @see https://daypicker.dev/docs/translation#custom-formatters
10 */
11export function formatMonthDropdown(
12 /** The month number to format. */
13 monthNumber: number,
14 /** The locale to use for formatting. */
15 locale = enUS
16): string {
17 return locale.localize?.month(monthNumber as DateFnsMonth);
18}