Is it possible to use isBetween method taking in count only the month and day, for example I have this date: “05-06” it’s in format “MM-DD”, in this method should return true:
const isOk = dayjs("05-06").isBetween("05-05", "07-25");
isOk is equal to true, it seems to be working however in the docs we only have granularity like this:
dayjs('2010-10-20').isBetween('2010-10-19', dayjs('2010-10-25'), 'year')