lunasqu.ee-nuxt/lib/utils/date-object.ts

8 lines
267 B
TypeScript
Raw Normal View History

2022-10-16 09:37:13 +00:00
export function getDateObject(post) {
const date = new Date(post.date);
const year = date.getFullYear();
const month = (date.getMonth() + 1).toString().padStart(2, '0');
const day = date.getDate().toString().padStart(2, '0');
return { year, month, day };
}