Calculating days, hours and minutes from strings [closed]

I have for example array of strings

[
 '64 days 6 hours 30 minutes',
 '1 day 23 hours 30 minutes',
 '1 day',
 '10 minutes'
]

I need to write a javascript function returning a string which is a sum of days hours minutes like that:

'67 days 6 hours 10 minutes'

I’m happy to use third-party library as far as it’s npm.

Honestly, I have no clue where to start, researched everything I could research…