MCPcopy Index your code
hub / github.com/react-dates/react-dates / isInclusivelyAfterDay

Function isInclusivelyAfterDay

src/utils/isInclusivelyAfterDay.js:5–8  ·  view source on GitHub ↗
(a, b)

Source from the content-addressed store, hash-verified

3import isBeforeDay from './isBeforeDay';
4
5export default function isInclusivelyAfterDay(a, b) {
6 if (!moment.isMoment(a) || !moment.isMoment(b)) return false;
7 return !isBeforeDay(a, b);
8}

Calls 1

isBeforeDayFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…