I am trying to print the short name of the chosen timezone. It works good for all the timezones except for a few Asian timezones. For 'Asia/Calcutta' it prints 'GMT+5:30' but I expect 'IST'
Any clue? Sandbox: https://codesandbox.io/s/material-demo-5bub4
import { DateTime } from 'luxon';
const timeZone = 'Asia/Calcutta';
const timeZoneAbbreviation = DateTime.local().setZone(timeZone).toFormat('ZZZZ');
console.log(timeZoneAbbreviation);