importtype { Locale } from'date-fns';
import { format } from'date-fns';
/**
* The default formatter for the name of the weekday.
*/exportfunctionformatWeekdayName(weekday: Date,
options?: { locale?: Locale }
): string {
returnformat(weekday, 'cccccc', options);
}