| 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/copy-time.js |
export function copyTime(from: Date, to: Date): void
{
to.setUTCHours(from.getUTCHours());
to.setUTCMinutes(from.getUTCMinutes());
to.setUTCSeconds(from.getUTCSeconds());
}