@stemy/ngx-utils 12.2.9 → 12.2.10

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.
@@ -4736,7 +4736,7 @@
4736
4736
  function ReplacePipe() {
4737
4737
  }
4738
4738
  ReplacePipe.prototype.transform = function (value, from, to) {
4739
- return value ? value.replace(from, to) : value;
4739
+ return ObjectUtils.isDefined(value) ? ("" + value).replace(from, to) : "";
4740
4740
  };
4741
4741
  return ReplacePipe;
4742
4742
  }());