UNPKG

react-day-picker

Version:

Customizable Date Picker for React

12 lines (10 loc) 229 B
import format from 'date-fns/format'; /** * The default formatter for the Year caption. */ export function formatYearCaption( year: Date, options?: { locale?: Locale } ): string { return format(year, 'yyyy', options); }