@xuda.io/xuda-worker-bundle-min 1.3.1082 → 1.3.1083
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/index.js +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -9575,10 +9575,10 @@ func.expression.get = async function (
|
|
|
9575
9575
|
fields[val.fieldId] = res[key];
|
|
9576
9576
|
}
|
|
9577
9577
|
// extract object
|
|
9578
|
-
if (typeof val.value === "object" && var_Arr.length > 1
|
|
9578
|
+
if (typeof val.value === "object" && var_Arr.length > 1) {
|
|
9579
9579
|
if (
|
|
9580
9580
|
!Array.isArray(val.value) &&
|
|
9581
|
-
!var_Arr[key + 1].value?.includes(".")
|
|
9581
|
+
!var_Arr[key + 1].value?.includes(".") && !["api_rendered_output"].includes(sourceP)
|
|
9582
9582
|
) {
|
|
9583
9583
|
// prevent cast on single value expression
|
|
9584
9584
|
res[key] = "(" + JSON.stringify(val.value) + ")";
|