Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/ui/date-picker/src/helpers/
Upload File :
Current File : /var/www/homesaver/www/bitrix/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;
}