| Current Path : /var/www/homesaver/www/bitrix/modules/ui/install/js/ui/date-picker/src/helpers/ |
| Current File : /var/www/homesaver/www/bitrix/modules/ui/install/js/ui/date-picker/src/helpers/clone-date.js |
export function cloneDate(date: Date): Date
{
const newDate = new Date(date.getTime());
if (date.__utc)
{
newDate.__utc = true;
}
return newDate;
}