@bian-womp/spark-graph 0.3.53 → 0.3.55

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/lib/esm/index.js CHANGED
@@ -3749,11 +3749,11 @@ class GraphRuntime {
3749
3749
  if (!node)
3750
3750
  return undefined;
3751
3751
  return {
3752
- inputs: { ...node.inputs },
3753
- outputs: { ...node.outputs },
3752
+ inputs: node.inputs,
3753
+ outputs: node.outputs,
3754
3754
  state: node.state,
3755
3755
  params: node.params,
3756
- stats: { ...node.stats },
3756
+ stats: node.stats,
3757
3757
  };
3758
3758
  }
3759
3759
  getEnvironment() {