in scripts/dashboard-importer/src/common/report.ts [38:43]
export function getDateString(date: Date) { const year = date.getFullYear(); const month = date.getMonth() + 1; const day = date.getDate(); return `${year}-${month}-${day}`; }