getClock method

String getClock()

Return whether this locale commonly uses the 12- or the 24-hour clock.

Implementation

String getClock() {
  final String jscode1 = 'new LocaleInfo("$locale").getClock()';
  final String result = ILibJS.instance.evaluate(jscode1).stringResult;
  return result;
}