mirror of
https://github.com/ershisan99/flashcards-example-project.git
synced 2025-12-16 12:33:18 +00:00
8 lines
153 B
TypeScript
8 lines
153 B
TypeScript
export function formatDate(date: string | undefined) {
|
|
if (!date) {
|
|
return ''
|
|
}
|
|
|
|
return new Date(date).toLocaleDateString('ru-RU')
|
|
}
|