2024-01-12 14:03:18 +00:00
|
|
|
import isValidDate from 'filters/isValidDate';
|
|
|
|
|
|
|
|
export default function toHour(date) {
|
|
|
|
if (!isValidDate(date)) {
|
|
|
|
return '--:--';
|
|
|
|
}
|
2024-09-24 05:25:17 +00:00
|
|
|
return new Date(date || '').toLocaleTimeString([], {
|
2024-01-22 17:06:23 +00:00
|
|
|
hour: '2-digit',
|
|
|
|
minute: '2-digit',
|
|
|
|
});
|
2024-01-12 14:03:18 +00:00
|
|
|
}
|