UNPKG

414 BPlain TextView Raw
1/**
2 * Format the years for the dropdown option label.
3 *
4 * @defaultValue `year.toString()`
5 * @group Formatters
6 * @see https://daypicker.dev/docs/translation#custom-formatters
7 */
8export function formatYearDropdown(year: number): string {
9 return year.toString();
10}
11
12/**
13 * @private
14 * @deprecated Use `formatYearDropdown` instead.
15 * @group Formatters
16 */
17export const formatYearCaption = formatYearDropdown;