| Current Path : /var/www/homesaver/www/bitrix/js/main/date/src/ |
| Current File : /var/www/homesaver/www/bitrix/js/main/date/src/index.js |
import { DateTimeFormat } from './date-time-format';
import { BrowserTime } from './timezone/browser-time';
import { Offset } from './timezone/offset';
import { ServerTime } from './timezone/server-time';
import { UserTime } from './timezone/user-time';
// compatibility alias
const Date = DateTimeFormat;
const Timezone = Object.freeze({
Offset,
BrowserTime,
UserTime,
ServerTime,
});
export {
DateTimeFormat,
Date,
Timezone,
};