Intl.DurationFormat Normative PR
Ben Allen, 104th TC39
402 Normative PRs
Ben Allen
Normative: turn useGrouping *false* for hours & smaller units when style is 2-digits or numeric
402 Normative PRs
Ben Allen
new Intl.DurationFormat('en', {style: "digital"}).format({hours: 1, minutes: 2, seconds: 3})
// "1:02:03"
new Intl.DurationFormat('en', {style: "digital"}).format({hours: 1, minutes: 2, seconds: 30000000})
// "1:02:30,000,000"
The issue
402 Normative PRs
Ben Allen
The solution
402 Normative PRs
Ben Allen
The embarrassment