芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/react-dates/esm/utils/isInclusivelyAfterDay.js
import moment from 'moment'; import isBeforeDay from './isBeforeDay'; export default function isInclusivelyAfterDay(a, b) { if (!moment.isMoment(a) || !moment.isMoment(b)) return false; return !isBeforeDay(a, b); }