pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
at main 7 lines 274 B view raw
1export function uses12HourClock() { 2 const parts = new Intl.DateTimeFormat(undefined, { 3 hour: "numeric", 4 }).formatToParts(new Date()); 5 // If a dayPeriod ("AM"/"PM" or localized equivalent) appears, it's 12-hour 6 return parts.some((p) => p.type === "dayPeriod"); 7}