@c-rex/utils 0.3.0-build.35 → 0.3.0-build.38

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.
@@ -1352,10 +1352,10 @@ var DEFAULT_COOKIE_LIMIT = 30 * 24 * 60 * 60 * 1e3;
1352
1352
  // src/metadata.ts
1353
1353
  var getTitle = (titles, labels) => {
1354
1354
  if (titles) {
1355
- return titles[0]?.value;
1355
+ return titles[0]?.value || "NO TITLE";
1356
1356
  }
1357
1357
  if (labels) {
1358
- return labels[0]?.value;
1358
+ return labels[0]?.value || "NO TITLE";
1359
1359
  }
1360
1360
  return "NO TITLE";
1361
1361
  };