Convert a duration from any combination of units into the selected units.
Select which duration units to convert to.
import {convertDuration} from 'date-vir';convertDuration({seconds: 5, milliseconds: 5}, {minutes: true}); // `{minutes: 0.25}`convertDuration({seconds: 5_356_800}, {weeks: true, seconds: true}); // `{weeks: 8, seconds: 518_400}` Copy
import {convertDuration} from 'date-vir';convertDuration({seconds: 5, milliseconds: 5}, {minutes: true}); // `{minutes: 0.25}`convertDuration({seconds: 5_356_800}, {weeks: true, seconds: true}); // `{weeks: 8, seconds: 518_400}`
Convert a duration from any combination of units into the selected units.