@syncfusion/ej2-base 23.2.4 → 23.2.6

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.
@@ -9442,7 +9442,7 @@ var Touch = /** @__PURE__ @class */ (function (_super) {
9442
9442
  /**
9443
9443
  * Template Engine
9444
9444
  */
9445
- var LINES = new RegExp('\\n|\\r|\\s\\s+', 'g');
9445
+ var LINES = new RegExp('[\\n\\r\\s]+', 'g');
9446
9446
  var QUOTES = new RegExp(/'|"/g);
9447
9447
  var IF_STMT = new RegExp('if ?\\(');
9448
9448
  var ELSEIF_STMT = new RegExp('else if ?\\(');
@@ -9530,7 +9530,7 @@ function evalExp(str, nameSpace, helper, ignorePrefix) {
9530
9530
  str = str.replace(value, singleSpace);
9531
9531
  });
9532
9532
  }
9533
- return str.replace(LINES, '').replace(DBL_QUOTED_STR, '\'$1\'').replace(exp,
9533
+ return str.replace(LINES, ' ').replace(DBL_QUOTED_STR, '\'$1\'').replace(exp,
9534
9534
  // eslint-disable-next-line
9535
9535
  function (match, cnt, offset, matchStr) {
9536
9536
  var SPECIAL_CHAR = /@|#|\$/gm;