mirror of
https://gitlab.com/foxixus/neomovies-api.git
synced 2025-10-27 17:38:51 +05:00
14 lines
272 B
JavaScript
14 lines
272 B
JavaScript
|
|
function formatDate(dateString) {
|
||
|
|
if (!dateString) return null;
|
||
|
|
const date = new Date(dateString);
|
||
|
|
return date.toLocaleDateString('ru-RU', {
|
||
|
|
year: 'numeric',
|
||
|
|
month: 'long',
|
||
|
|
day: 'numeric'
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
formatDate
|
||
|
|
};
|