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