phantasmal-world/src/ui/time.ts
2019-06-12 10:24:27 +02:00

10 lines
298 B
TypeScript

/**
* @param hours can be fractional.
* @returns a string of the shape ##:##.
*/
export function hoursToString(hours: number): string {
const h = Math.floor(hours);
const m = Math.round(60 * (hours - h));
return `${h.toString().padStart(2, '0')}:${m.toString().padStart(2, '0')}`;
}