fix: replace `undefined` with `void(0)` in CallExpressions

pull/16693/head
ComputerGuy 4 days ago
parent be645b4d9f
commit c1b606fcf3

@ -0,0 +1,5 @@
---
'svelte': patch
---
fix: replace `undefined` with `void(0)` in CallExpressions

@ -108,7 +108,7 @@ export function call(callee, ...args) {
if (popping) {
args.pop();
} else {
args[i] = id('undefined');
args[i] = void0;
}
} else {
popping = false;

Loading…
Cancel
Save