w-lab-app/src/shared/utils/date.ts
gofnnp fc01784acb main
add profile path & auth
2025-06-19 20:35:00 +04:00

4 lines
190 B
TypeScript

export const formatDate = (date: string | null) => {
if (!date) return null;
return new Date(date).toLocaleDateString("en-US", { month: "long", day: "numeric", year: "numeric" });
};