@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/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/behaviors/index.js
CHANGED
|
@@ -28114,7 +28114,14 @@ function getAllBehaviorNames() {
|
|
|
28114
28114
|
return getEntries().map((e) => e.name);
|
|
28115
28115
|
}
|
|
28116
28116
|
function getAllBehaviors() {
|
|
28117
|
-
|
|
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();
|