Round every unit in a given duration to the given number of decimal points.
import {roundDuration} from 'date-vir';roundDuration({days: 1.002, minutes: 0.125}, 2); // `{days: 1, minutes: 0.13}` Copy
import {roundDuration} from 'date-vir';roundDuration({days: 1.002, minutes: 0.125}, 2); // `{days: 1, minutes: 0.13}`
Round every unit in a given duration to the given number of decimal points.