We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Fn
1 parent 037536a commit e6f3101Copy full SHA for e6f3101
src/nodes/core/NodeBuilder.js
@@ -2710,6 +2710,11 @@ class NodeBuilder {
2710
2711
}
2712
2713
+ /**
2714
+ * Prevents the node builder from being used as an iterable in TSL.Fn(), avoiding potential runtime errors.
2715
+ */
2716
+ *[ Symbol.iterator ]() { }
2717
+
2718
// Deprecated
2719
2720
/**
@@ -2725,6 +2730,7 @@ class NodeBuilder {
2725
2730
2726
2731
2727
2732
2733
2728
2734
2729
2735
2736
export default NodeBuilder;
0 commit comments