You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function _isBetween (date, dateStart, dateEnd, includeStart = false, includeEnd = false) {
let result = date.isAfter(dateStart) && date.isBefore(dateEnd);
if (!result && includeStart) result = date.isSame(dateStart);
if (!result && includeEnd) result = date.isSame(dateEnd);
return result;
}
https://momentjs.com/docs/#/query/is-between/
Actual state:
We must be able to enable inclusivity by passing a string (like in moment):
The text was updated successfully, but these errors were encountered: