getDefaultScript method

String getDefaultScript()

Return the default script used to write text in the language of this locale.

Implementation

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