@seniorsistemas/angular-components 14.14.3 → 14.14.4

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.
@@ -1278,12 +1278,11 @@
1278
1278
 
1279
1279
  var NumberLocaleOptions = /** @class */ (function () {
1280
1280
  function NumberLocaleOptions(config) {
1281
- var _this = this;
1282
1281
  if (config === void 0) { config = {}; }
1283
1282
  this.thousandsSeparator = ".";
1284
1283
  this.decimalSeparator = ",";
1285
1284
  this.currencySymbol = "R$";
1286
- Object.keys(config).forEach(function (key) { return (_this[key] = config[key] || _this[key]); });
1285
+ Object.assign(this, config);
1287
1286
  }
1288
1287
  return NumberLocaleOptions;
1289
1288
  }());