Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich-Harris committed May 12, 2024
1 parent 4fdbb3f commit 3812e5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/svelte/src/internal/client/runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -655,9 +655,9 @@ function process_effects(effect, recursive, collected_effects) {
// We might be dealing with many effects here, far more than can be spread into
// an array push call (callstack overflow). So let's deal with each effect in a loop.
for (var i = 0; i < effects.length; i++) {
var effect = effects[i];
collected_effects.push(effect);
process_effects(effect, true, collected_effects);
child = effects[i];
collected_effects.push(child);
process_effects(child, true, collected_effects);
}
}
}
Expand Down

0 comments on commit 3812e5f

Please sign in to comment.