Files
vite_front/hwe/ts/util/parseYearMonth.ts
2022-07-08 00:11:41 +09:00

3 lines
126 B
TypeScript

export function parseYearMonth(yearMonth: number): [number, number] {
return [(yearMonth / 12) | 0, yearMonth % 12 + 1];
}