@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
|
@@ -28042,7 +28042,14 @@ function getAllBehaviorNames() {
|
|
|
28042
28042
|
return getEntries().map((e) => e.name);
|
|
28043
28043
|
}
|
|
28044
28044
|
function getAllBehaviors() {
|
|
28045
|
-
|
|
28045
|
+
const results = [];
|
|
28046
|
+
for (const entry of getEntries()) {
|
|
28047
|
+
try {
|
|
28048
|
+
results.push(callBehavior(entry));
|
|
28049
|
+
} catch {
|
|
28050
|
+
}
|
|
28051
|
+
}
|
|
28052
|
+
return results;
|
|
28046
28053
|
}
|
|
28047
28054
|
function getBehaviorsByLevel(level) {
|
|
28048
28055
|
return getAllBehaviors();
|