Ralph Najem
Results
2
comments of
Ralph Najem
This is caused because the underlying method used in iDaysInMonth gets the days in arabic language and parseInt doesn't parse arabic numbers. I will create a PR for this.
A workaround for this is to use the iDaysInMonth property from the hMoment library directly `hMoment.iDaysInMonth(date.iYear(), date.iMonth())` Where date is your moment object, or just pass in the iyear and...