@stemy/ngx-utils 19.0.7 → 19.0.8

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.
@@ -3386,7 +3386,7 @@ class StaticLanguageService {
3386
3386
  if (!expr || !params)
3387
3387
  return expr;
3388
3388
  return expr.replace(/{{\s?([^{}\s]*)\s?}}/g, (substring, b) => {
3389
- const r = ObjectUtils.getValue(params, b);
3389
+ const r = ObjectUtils.getValue(params, b, "");
3390
3390
  return ObjectUtils.isDefined(r) ? r : substring;
3391
3391
  });
3392
3392
  }