blob: 961aa310383015e710afcfe6a651f0ecc0355a92 (
plain)
1
2
3
4
5
6
7
|
export function formatDuration(months: number): string {
const years = Math.floor(months / 12);
const m = months % 12;
if (years === 0) return `${m}ヶ月`;
if (m === 0) return `${years}年`;
return `${years}年${m}ヶ月`;
}
|