getTimeZone method
Return the default time zone for this locale.
Implementation
String getTimeZone() {
final String jscode1 = 'new LocaleInfo("$locale").getTimeZone()';
final String result = ILibJS.instance.evaluate(jscode1).stringResult;
return result;
}