Is there a way to customize the distance breakdown between the given dates in words?
_Example:_

Instead of having a distance of 45 minute show as about one hour, I would like anything between a minute and an hour to be shown in minutes.
89 minutes being formatted as "about 1 hour" is also rather imprecise. Could there be an option to always keep at least (roughly) two significant digits?
https://date-fns.org/v1.29.0/docs/distanceInWordsStrict seems to be what I was looking for :)
I will leave my comment here with the hope that someone has the answer.
I want to have a response that is equal to the distanceInWordsStrict, but I don't want it to round the result. For example, if the diff is 1h35, I want it to result 1 hour 35 minutes or something like that. Can I do that with date-fns?
Most helpful comment
I will leave my comment here with the hope that someone has the answer.
I want to have a response that is equal to the
distanceInWordsStrict, but I don't want it to round the result. For example, if the diff is 1h35, I want it to result1 hour 35 minutesor something like that. Can I do that with date-fns?