@almadar/std 5.4.0 → 5.4.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.
@@ -28114,7 +28114,14 @@ function getAllBehaviorNames() {
28114
28114
  return getEntries().map((e) => e.name);
28115
28115
  }
28116
28116
  function getAllBehaviors() {
28117
- return getEntries().map((e) => callBehavior(e));
28117
+ const results = [];
28118
+ for (const entry of getEntries()) {
28119
+ try {
28120
+ results.push(callBehavior(entry));
28121
+ } catch {
28122
+ }
28123
+ }
28124
+ return results;
28118
28125
  }
28119
28126
  function getBehaviorsByLevel(level) {
28120
28127
  return getAllBehaviors();