datetime_translator.js 485 B

123456789101112131415161718
  1. /**
  2. * DevExtreme (viz/translators/datetime_translator.js)
  3. * Version: 19.1.16
  4. * Build date: Tue Oct 18 2022
  5. *
  6. * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
  7. * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
  8. */
  9. "use strict";
  10. function parse(value) {
  11. return null !== value ? new Date(value) : value
  12. }
  13. module.exports = {
  14. _fromValue: parse,
  15. _toValue: parse,
  16. _add: require("../../core/utils/date").addDateInterval
  17. };