jalaliday icon indicating copy to clipboard operation
jalaliday copied to clipboard

Wrong Date of Month

Open masoudelahi opened this issue 4 years ago • 0 comments

Date of month is wrong in some months

Example for Bahman (1399/11/11):

const date = dayjs().calendar('jalali').locale('fa');
console.log('days =', date.daysInMonth());
for (let i = 1; i <= date.daysInMonth(); i++) {
    console.log('day ' + (i < 10 ? '0' : '') + i + 'th = ' + date.format('DD'));
}

Output:

jdb

masoudelahi avatar Jan 29 '21 12:01 masoudelahi