UNPKG

react-dates-rtl

Version:

Based on react-dates by airbnb [with RTL support]

13 lines (8 loc) 357 B
import moment from 'moment'; import toMomentObject from './toMomentObject'; import { DISPLAY_FORMAT } from '../../constants'; export default function toLocalizedDateString(date, currentFormat) { const dateObj = moment.isMoment(date) ? date : toMomentObject(date, currentFormat); if (!dateObj) return null; return dateObj.format(DISPLAY_FORMAT); }