Files
core/hwe/ts/util/parseYearMonth.ts
2021-11-13 16:33:11 +09:00

3 lines
126 B
TypeScript

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