File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ export function createPipeExecutor(
115115 return result
116116 }
117117 // Execute step synchronously
118- result = runtimeSteps [ i ] ( result )
118+ result = runtimeSteps [ i ] ! ( result )
119119 }
120120 return result
121121 }
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ export const intersection = implStepPlugin<PluginDef>({
9494 if ( isInvalid )
9595 break
9696
97- const branchResult = branches [ i ] [ '~execute' ] ( value )
97+ const branchResult = branches [ i ] ! [ '~execute' ] ( value )
9898
9999 if ( branchResult instanceof Promise ) {
100100 // Hit async, chain remaining branches
@@ -104,7 +104,7 @@ export const intersection = implStepPlugin<PluginDef>({
104104 } )
105105
106106 for ( let j = i + 1 ; j < len ; j ++ ) {
107- const jBranch = branches [ j ]
107+ const jBranch = branches [ j ] !
108108 chain = chain . then ( ( invalid ) => {
109109 if ( invalid )
110110 return true
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ export const union = implStepPlugin<PluginDef>({
9292
9393 // Try each branch synchronously until we hit async or find success
9494 for ( let i = 0 ; i < len ; i ++ ) {
95- const branchResult = branches [ i ] [ '~execute' ] ( value )
95+ const branchResult = branches [ i ] ! [ '~execute' ] ( value )
9696
9797 if ( branchResult instanceof Promise ) {
9898 // Hit async, chain remaining branches
@@ -104,7 +104,7 @@ export const union = implStepPlugin<PluginDef>({
104104 } )
105105
106106 for ( let j = i + 1 ; j < len ; j ++ ) {
107- const jBranch = branches [ j ]
107+ const jBranch = branches [ j ] !
108108 chain = chain . then ( ( result ) => {
109109 if ( result . success )
110110 return result
You can’t perform that action at this time.
0 commit comments