@syncfusion/ej2-base 28.2.5 → 28.2.9

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.
@@ -1725,6 +1725,7 @@ var IntlBase;
1725
1725
  const spaceGrouping = integerPart.replace(/ $/g, '').indexOf(' ') !== -1;
1726
1726
  cOptions.useGrouping = integerPart.indexOf(',') !== -1 || spaceGrouping;
1727
1727
  integerPart = integerPart.replace(/,/g, '');
1728
+ integerPart = (/\s$/.test(integerPart)) ? integerPart.replace(/ /g, '') : integerPart;
1728
1729
  const fractionPart = pattern[7];
1729
1730
  if (integerPart.indexOf('0') !== -1) {
1730
1731
  cOptions.minimumIntegerDigits = integerPart.length - integerPart.indexOf('0');