@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.
@@ -9294,7 +9294,7 @@ Touch = __decorate$5([
9294
9294
  /**
9295
9295
  * Template Engine
9296
9296
  */
9297
- const LINES = new RegExp('\\n|\\r|\\s\\s+', 'g');
9297
+ const LINES = new RegExp('[\\n\\r\\s]+', 'g');
9298
9298
  const QUOTES = new RegExp(/'|"/g);
9299
9299
  const IF_STMT = new RegExp('if ?\\(');
9300
9300
  const ELSEIF_STMT = new RegExp('else if ?\\(');
@@ -9410,7 +9410,7 @@ function evalExp(str, nameSpace, helper, ignorePrefix) {
9410
9410
  str = str.replace(value, singleSpace);
9411
9411
  });
9412
9412
  }
9413
- return str.replace(LINES, '').replace(DBL_QUOTED_STR, '\'$1\'').replace(exp,
9413
+ return str.replace(LINES, ' ').replace(DBL_QUOTED_STR, '\'$1\'').replace(exp,
9414
9414
  // eslint-disable-next-line
9415
9415
  (match, cnt, offset, matchStr) => {
9416
9416
  const SPECIAL_CHAR = /@|#|\$/gm;