I've migrated to Day.js from Moment.js and can't find the solution to display the difference in dates with units.
For example, I have two dates: '2021-02-01' and '2021-02-04' and I need to get exactly
3 days (using my locale).
In addition, I also want to add one day here - this is my working code in Moment.js:
const a = moment(endDate);
const b = moment(startDate);
moment.duration(a.diff(b)).add(1, 'days').humanize();
As I see humanize() works only with duration in Day.js, how can I have desired output?