UNPKG

react-day-picker

Version:

Customizable Date Picker for React

17 lines (15 loc) 460 B
import { DateLib, type DateLibOptions } from "../classes/DateLib.js"; /** * Format the weekday name to be displayed in the weekdays header. * * @defaultValue `cccccc` (e.g. "Mo" for Monday) * @group Formatters * @see https://daypicker.dev/docs/translation#custom-formatters */ export function formatWeekdayName( weekday: Date, options?: DateLibOptions, dateLib?: DateLib ) { return (dateLib ?? new DateLib(options)).format(weekday, "cccccc"); }