react-day-picker
Version:
Customizable Date Picker for React
14 lines • 472 B
JavaScript
import { dateLib as defaultDateLib } from "../lib/index.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, options,
/** @ignore */
dateLib = defaultDateLib) {
return dateLib.format(weekday, "cccccc", options);
}
//# sourceMappingURL=formatWeekdayName.js.map