@punks/backend-entity-manager 0.0.373 → 0.0.374

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/cjs/index.js CHANGED
@@ -40664,7 +40664,7 @@ const registerHandlebarsHelpers = () => {
40664
40664
  return;
40665
40665
  }
40666
40666
  lib.registerHelper("truncate", function (text, maxChars) {
40667
- if (text.length > maxChars) {
40667
+ if (text?.length > maxChars) {
40668
40668
  return text.substring(0, maxChars) + "...";
40669
40669
  }
40670
40670
  else {