/
TimurIsm
/
OpenEyes
Обзор
Документация
Войти
/
TimurIsm
/
OpenEyes
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
front/src/components/dateFormatter.jsx
13 строк
411 B
TimurIsm
first_commit
16 май 2026, 15:34
16 май 2026, 15:34
4d3f198
Код
Авторство
О чём код?
export const formatDate = (dateString, options = {}) => { const { fullMonth = true } = options; const date = new Date(dateString); const monthOptions = fullMonth ? { month: 'long' } : { month: '2-digit' }; return date.toLocaleDateString('ru-RU', { day: '2-digit', ...monthOptions, year: 'numeric', hour: '2-digit', minute: '2-digit' }); };