UNPKG

354 BJavaScriptView Raw
1import moment from 'moment';
2
3import toMomentObject from './toMomentObject';
4
5import { DISPLAY_FORMAT } from '../constants';
6
7export default function toLocalizedDateString(date, currentFormat) {
8 const dateObj = moment.isMoment(date) ? date : toMomentObject(date, currentFormat);
9 if (!dateObj) return null;
10
11 return dateObj.format(DISPLAY_FORMAT);
12}