overleaf-cep/services/web/frontend/js/shared/utils/formatDate.ts
Alf Eaton a8a61db23e Convert shared utils modules to TypeScript (#22665)
GitOrigin-RevId: de40a0aaba35336ec59499a047356b0b9d161b38
2025-01-14 09:04:50 +00:00

9 lines
205 B
TypeScript

import moment from 'moment'
export function formatUtcDate(date: moment.MomentInput) {
if (date) {
return moment(date).utc().format('D MMM YYYY, HH:mm:ss') + ' UTC'
} else {
return 'N/A'
}
}