I wanna calculate the difference between the two dates with dayjs library. it works nice but I need to something different a little bit. For example:
`${dayjs(item).diff(now, 'day') day}`
this function returns '20 days' or whatever. but there are hours that are not calculated inside 'item'. I mean it should be like '20 days 9 hours'.
How can I do this with dayjs?
Thanks for any helps