UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

12 lines (11 loc) 569 B
/** * DevExtreme (esm/__internal/scheduler/r1/utils/format_weekday.js) * Version: 24.2.6 * Build date: Mon Mar 17 2025 * * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ import dateLocalization from "../../../../common/core/localization/date"; export const formatWeekday = date => dateLocalization.getDayNames("abbreviated")[date.getDay()]; export const formatWeekdayAndDay = date => `${formatWeekday(date)} ${dateLocalization.format(date,"day")}`;