I'm using Luxon in my JavaScript project to display human readable time:
dateTime.toLocaleString({
year: "numeric",
month: "short",
day: "numeric",
hour: "numeric",
minute: "numeric",
hour12: false,
timeZoneName: 'short'
});
However, the timezone is being displayed as GMT-7, and the requirement is to display it as PST or PDT.
Could you please share any suggestions how this could be done?
Thank you.