@almadar/std 5.4.0 → 5.5.0
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/behaviors/exports-reader.js +8 -1
- package/dist/behaviors/exports-reader.js.map +1 -1
- package/dist/behaviors/index.js +8 -1
- package/dist/behaviors/index.js.map +1 -1
- package/dist/behaviors/query.js.map +1 -1
- package/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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
|
-
|
|
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();
|