import { default } from "https://deno.land/x/date_fns@v2.22.0/formatISODuration/index.js";
Examples
// Format the given duration as ISO 8601 string
formatISODuration({
years: 39,
months: 2,
days: 20,
hours: 7,
minutes: 5,
seconds: 0
})
//=> 'P39Y2M20DT0H0M0S'
// Format the given duration as ISO 8601 string formatISODuration({ years: 39, months: 2, days: 20, hours: 7, minutes: 5, seconds: 0 }) //=> 'P39Y2M20DT0H0M0S'