export const formatYearMonth = (yearMonth: number): string => { const year = Math.floor(yearMonth / 100); const month = yearMonth % 100; return `${year}-${month<10?"0":""}${month}`; }