UNPKG

react-dates

Version:

A responsive and accessible date range picker component built with React

7 lines (5 loc) 167 B
import moment from 'moment'; export default function isSameDay(a, b) { if (!moment.isMoment(a) || !moment.isMoment(b)) return false; return a.isSame(b, 'day'); }