(a, b)
| 3 | import isBeforeDay from './isBeforeDay'; |
| 4 | |
| 5 | export default function isInclusivelyAfterDay(a, b) { |
| 6 | if (!moment.isMoment(a) || !moment.isMoment(b)) return false; |
| 7 | return !isBeforeDay(a, b); |
| 8 | } |
no test coverage detected
searching dependent graphs…