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/copy-time.js

export function copyTime(from: Date, to: Date): void
{
	to.setUTCHours(from.getUTCHours());
	to.setUTCMinutes(from.getUTCMinutes());
	to.setUTCSeconds(from.getUTCSeconds());
}