If I run this
const startDate: Date = new Date(Date.UTC(2021, 1, 1));
const toi = createTimeOfInterest.fromDate(startDate);
const lastQuarterDate = createMoon(toi).getUpcomingLastQuarter();
Assuming I am not missing something, lastQuarterDate should be on the 4th of Feb 2021.
Instead, what I am getting is the 6th of March 2021, which is the date of the last quarter moon phase after the upcoming last quarter.
(library version is 5.17.8)
If I run this
Assuming I am not missing something, lastQuarterDate should be on the 4th of Feb 2021.
Instead, what I am getting is the 6th of March 2021, which is the date of the last quarter moon phase after the upcoming last quarter.
(library version is 5.17.8)