@elizaos/core 1.6.2-alpha.5 → 1.6.2-alpha.6
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/node/index.node.js
CHANGED
|
@@ -41791,6 +41791,8 @@ function safeReplacer() {
|
|
|
41791
41791
|
function parseBooleanFromText2(value) {
|
|
41792
41792
|
if (!value)
|
|
41793
41793
|
return false;
|
|
41794
|
+
if (typeof value === "boolean")
|
|
41795
|
+
return value;
|
|
41794
41796
|
const affirmative = ["YES", "Y", "TRUE", "T", "1", "ON", "ENABLE"];
|
|
41795
41797
|
const negative = ["NO", "N", "FALSE", "F", "0", "OFF", "DISABLE"];
|
|
41796
41798
|
const normalizedText = value.trim().toUpperCase();
|
|
@@ -46425,5 +46427,5 @@ export {
|
|
|
46425
46427
|
AgentRuntime
|
|
46426
46428
|
};
|
|
46427
46429
|
|
|
46428
|
-
//# debugId=
|
|
46430
|
+
//# debugId=238DF81EE8DBFA4564756E2164756E21
|
|
46429
46431
|
//# sourceMappingURL=index.node.js.map
|