我使用dayJS并希望仅显示一天的相对时间 - 24 小时
有没有办法自定义 fromNow() 只显示一天?
例子
currentDate = 'Sun Aug 15 2021 15:03:09 GMT+0300';
oldDate = 'Fri Aug 13 2021 15:03:09 GMT+0300';
created_at = dayjs(currentDate).fromNow(true) => 17 min 2 sec // ok ✅
// if +=1 day
created_at =
dayjs(oldDate).fromNow(true) => 2 day // hidden this one