Files
core_ng/server/util/joinYearMonth.ts
T
2023-08-05 12:12:18 +00:00

3 lines
104 B
TypeScript

export function joinYearMonth(year: number, month: number): number {
return year * 12 + month - 1;
}