UNPKG

react-dates-rtl

Version:

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

9 lines (6 loc) 232 B
import moment from 'moment'; import isSameDay from './isSameDay'; export default function isInclusivelyBeforeDay(a, b) { if (!moment.isMoment(a) || !moment.isMoment(b)) return false; return a.isBefore(b) || isSameDay(a, b); }