getRoundingMode method
Return the rounding mode used for numeric formatting in this locale.
Implementation
String getRoundingMode() {
final String jscode1 = 'new LocaleInfo("$locale").getRoundingMode()';
final String result = ILibJS.instance.evaluate(jscode1).stringResult;
return result;
}