@appannie/react-infinite-calendar
Version:
Infinite scrolling date-picker built with React, with localization, themes, keyboard support, and more.
17 lines (11 loc) • 360 B
JavaScript
import { parseISO } from 'date-fns';
var parseDate = function parseDate(date) {
if (date instanceof Date) {
return date;
} // Note ParseISO is not gonna work with 2020-1-1 format. yyyy-MM-dd ONLY
if (typeof date === 'string' && /^\d{4}-\d{2}-\d{2}$/.test(date)) {
return parseISO(date);
}
return new Date(date);
};
export { parseDate };