-
-
Notifications
You must be signed in to change notification settings - Fork 94
Open
Labels
good first issueGood for newcomersGood for newcomers
Description
isSameMonth method returns true even if two dates aren't in the same Hijri month
const date1 = hijri.date("10/06/2020");
const date2 = hijri.addHours(date1, 13 * 24);
date1.format("iYYYY/iM/iD") // 1442/2/19
date2.format("iYYYY/iM/iD") // 1442/3/2
hijri.isSameMonth(date1, date2) // true (it should return false)Here is a link to reproduce the issue: link
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers