phantasmal-world/src/ui/time.ts

10 lines
298 B
TypeScript
Raw Normal View History

2019-06-12 16:24:27 +08:00
/**
* @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')}`;
}