@c-rex/utils 0.3.0-build.34 → 0.3.0-build.36

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.
@@ -1382,10 +1382,10 @@ var DEFAULT_COOKIE_LIMIT = 30 * 24 * 60 * 60 * 1e3;
1382
1382
  // src/metadata.ts
1383
1383
  var getTitle = (titles, labels) => {
1384
1384
  if (titles) {
1385
- return titles[0]?.value;
1385
+ return titles[0]?.value || "NO TITLE";
1386
1386
  }
1387
1387
  if (labels) {
1388
- return labels[0]?.value;
1388
+ return labels[0]?.value || "NO TITLE";
1389
1389
  }
1390
1390
  return "NO TITLE";
1391
1391
  };