cx 23.2.1 → 23.3.1

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.
package/dist/data.js CHANGED
@@ -588,8 +588,7 @@ function stringTemplate(str) {
588
588
  }
589
589
  }
590
590
 
591
- if (quoteStart < str.length) expr = plus(expr) + quoteStr(str.substring(quoteStart)); //console.log(expr);
592
-
591
+ if (quoteStart < str.length) expr = plus(expr) + quoteStr(str.substring(quoteStart));
593
592
  return (tplCache[str] = expression(expr));
594
593
  }
595
594
  var StringTemplate = {