9 lines
192 B
JavaScript
9 lines
192 B
JavaScript
export const getFormattedDate = (date) =>
|
|
date
|
|
? new Date(date).toLocaleDateString("en-us", {
|
|
year: "numeric",
|
|
month: "short",
|
|
day: "numeric",
|
|
})
|
|
: "";
|