UNPKG

devextreme

Version:

JavaScript/TypeScript Component Suite for Responsive Web Development

20 lines (18 loc) 570 B
/** * DevExtreme (esm/__internal/viz/translators/datetime_translator.js) * Version: 25.2.5 * Build date: Fri Feb 20 2026 * * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ import dateUtils from "../../../core/utils/date"; function parse(value) { return null !== value ? new Date(value) : value } export default { fromValue: parse, toValue: parse, _add: dateUtils.addDateInterval, convert: dateUtils.dateToMilliseconds };