8 lines
194 B
TypeScript
8 lines
194 B
TypeScript
export function formatDate(input: string): string {
|
|
const date = new Date(input)
|
|
return date.toLocaleDateString("en-US", {
|
|
month: "long",
|
|
day: "numeric",
|
|
year: "numeric",
|
|
})
|
|
}
|