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
I have a date range that starts in June and runs through July and into August. Creating an iterable of months in the range yields only the first two months. August is not included.
I have a date range that starts in June and runs through July and into August. Creating an iterable of months in the range yields only the first two months. August is not included.
Steps to Reproduce
Expected Behavior
Array [ "June", "July", "August" ]
Current Behavior
Array [ "June", "July" ]
moment.js 2.27.0
moment-range 4.0.2
Unless I'm missing something this seems to be a bug. Explicitly setting
{ excludeEnd: false }
doesn't work either.The text was updated successfully, but these errors were encountered: