devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
12 lines (11 loc) • 570 B
JavaScript
/**
* DevExtreme (esm/__internal/scheduler/r1/utils/format_weekday.js)
* Version: 23.2.6
* Build date: Wed May 01 2024
*
* Copyright (c) 2012 - 2024 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import dateLocalization from "../../../../localization/date";
export var formatWeekday = date => dateLocalization.getDayNames("abbreviated")[date.getDay()];
export var formatWeekdayAndDay = date => "".concat(formatWeekday(date), " ").concat(dateLocalization.format(date, "day"));