@stemy/ngx-utils 12.2.4 → 12.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3539,7 +3539,8 @@
3539
3539
  var num = ObjectUtils.isNumber(value) ? value : parseFloat(value) || 0;
3540
3540
  var str = (num / divider).toLocaleString(this.language.currentLanguage, {
3541
3541
  minimumFractionDigits: precision,
3542
- maximumFractionDigits: precision
3542
+ maximumFractionDigits: precision,
3543
+ useGrouping: false
3543
3544
  });
3544
3545
  return ObjectUtils.evaluate(format || this.defaultNumberFormat, { num: str });
3545
3546
  };