@xuda.io/xuda-worker-bundle-min 1.3.1509 → 1.3.1511
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 +3 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -7870,10 +7870,10 @@ func.expression.get = async function (SESSION_ID, valP, dsSessionP, sourceP, row
|
|
|
7870
7870
|
return await variable_not_exist();
|
|
7871
7871
|
}
|
|
7872
7872
|
|
|
7873
|
-
var split = [];
|
|
7873
|
+
// var split = [];
|
|
7874
7874
|
var var_Arr = [];
|
|
7875
|
-
split = func.expression.parse(ret);
|
|
7876
|
-
|
|
7875
|
+
const split = func.expression.parse(ret) || [];
|
|
7876
|
+
console.log(valP, split);
|
|
7877
7877
|
for await (const [arr_key, val] of Object.entries(split)) {
|
|
7878
7878
|
// run each field
|
|
7879
7879
|
const key = Number(arr_key);
|