mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
10 lines
298 B
TypeScript
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')}`;
|
|
}
|