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
recur=ICAL.Recur.fromData({freq:"MONTHLY",bymonthday: [3,2,1],until: "2017-07-02"});// 1st, 2nd, 3rd of every month till 2017-07-02start=ICAL.Time.fromDateString("2017-07-01")it=recur.iterator(start)console.log('Expected 2017-07-01, Actual '+it.next());//nullconsole.log('Expected 2017-07-02, Actual '+it.next());// null
https://jsfiddle.net/jkcamnjx/3/
The text was updated successfully, but these errors were encountered: