@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.
package/dist/index.js CHANGED
@@ -32171,7 +32171,14 @@ function getAllBehaviorNames() {
32171
32171
  return getEntries().map((e) => e.name);
32172
32172
  }
32173
32173
  function getAllBehaviors() {
32174
- return getEntries().map((e) => callBehavior(e));
32174
+ const results = [];
32175
+ for (const entry of getEntries()) {
32176
+ try {
32177
+ results.push(callBehavior(entry));
32178
+ } catch {
32179
+ }
32180
+ }
32181
+ return results;
32175
32182
  }
32176
32183
  function getBehaviorsByLevel(level) {
32177
32184
  return getAllBehaviors();