@bian-womp/spark-graph 0.3.54 → 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/cjs/index.cjs CHANGED
@@ -3751,11 +3751,11 @@ class GraphRuntime {
3751
3751
  if (!node)
3752
3752
  return undefined;
3753
3753
  return {
3754
- inputs: { ...node.inputs },
3755
- outputs: { ...node.outputs },
3754
+ inputs: node.inputs,
3755
+ outputs: node.outputs,
3756
3756
  state: node.state,
3757
3757
  params: node.params,
3758
- stats: { ...node.stats },
3758
+ stats: node.stats,
3759
3759
  };
3760
3760
  }
3761
3761
  getEnvironment() {