Running the following code in Javascript: var d = Date.UTC("Wed Jan 30 16:27:50 IST 2002");
Results in d being a NaN, same goes for using ICT (Indochina time) instead of IST (Israel Standard Time), although both seem to be valid time zone abbreviations. When I use EST instead, I get a Date object as expected.
Does any workaround exist? I can replace IST with UTC+2, but I don't want to manually match any not supported time zone, especially since I don't know what time zones are supported and which are not...