UNPKG

react-day-picker

Version:

Customizable Date Picker for React

17 lines 445 B
/** * Format the years for the dropdown option label. * * @defaultValue `year.toString()` * @group Formatters * @see https://daypicker.dev/docs/translation#custom-formatters */ export function formatYearDropdown(year) { return year.toString(); } /** * @private * @deprecated Use `formatYearDropdown` instead. * @group Formatters */ export const formatYearCaption = formatYearDropdown; //# sourceMappingURL=formatYearDropdown.js.map