2024-04-20 20:32:12 +03:00
|
|
|
import type { BlogPost } from '../types/post';
|
2022-10-16 14:04:03 +03:00
|
|
|
|
|
|
|
export function getDateObject(post: BlogPost) {
|
2022-10-16 12:37:13 +03:00
|
|
|
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 };
|
|
|
|
}
|