@xuda.io/xuda-worker-bundle-min 1.3.1085 → 1.3.1086
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 +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2212,7 +2212,7 @@ func.datasource.execute = async function (
|
|
|
2212
2212
|
let output_result = exp.result
|
|
2213
2213
|
if (tree_obj.apiOutput === "json") {
|
|
2214
2214
|
// iterate object to fix expressions
|
|
2215
|
-
for await ([key, val] of Object.entries(output_result)) {
|
|
2215
|
+
for await (let [key, val] of Object.entries(output_result)) {
|
|
2216
2216
|
output_result[key] = (await func.expression.get(
|
|
2217
2217
|
SESSION_ID,
|
|
2218
2218
|
val,
|