UNPKG

382 BJavaScriptView Raw
1import moment from 'moment';
2
3import { DISPLAY_FORMAT, ISO_FORMAT } from '../constants';
4
5export default function toMomentObject(dateString, customFormat) {
6 const dateFormats = customFormat
7 ? [customFormat, DISPLAY_FORMAT, ISO_FORMAT]
8 : [DISPLAY_FORMAT, ISO_FORMAT];
9
10 const date = moment(dateString, dateFormats, true);
11 return date.isValid() ? date.hour(12) : null;
12}