refactor: getToday (#281)

This commit is contained in:
George Adams
2023-05-08 07:10:05 -04:00
committed by GitHub
parent 6a56dd0231
commit f752a4420e

View File

@@ -1,10 +1,8 @@
export const getToday = () => {
const date = new Date();
const dateString =
date.getFullYear() +
'-' +
('0' + (date.getMonth() + 1)).slice(-2) +
'-' +
('0' + date.getDate()).slice(-2);
return dateString;
const year = date.getFullYear();
const month = String(date.getMonth() + 1).padStart(2, '0');
const day = String(date.getDate()).padStart(2, '0');
return `${year}-${month}-${day}`;
};