Rob's garden / notes / note

Note

Ooh Intl.DurationFormat made it to stage 4!

new Intl.DurationFormat("en-GB", { style: "narrow" }).format({
    hours: 1,
    minutes: 40,
    seconds: 56,
});
// => "1h 40m 56s"
undefined

GitHub - tc39/proposal-intl-duration-format