remove unused code

This commit is contained in:
MaysWind
2024-08-12 01:14:52 +08:00
parent 80396a444e
commit 753fc762a0
-4
View File
@@ -192,10 +192,6 @@ export function getYearAndMonth(date) {
const year = getYear(date);
let month = getMonth(date);
if (month < 10) {
month = '0' + month;
}
return `${year}-${month}`;
}