Skip to content

Commit e2f4ad3

Browse files
committed
doh
1 parent 528ff39 commit e2f4ad3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/svelte/src/compiler/phases/3-transform/client/visitors/CallExpression.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export function CallExpression(node, context) {
8383
node.callee.property.name
8484
) &&
8585
node.arguments.some(
86-
(arg) => arg.type === 'SpreadElement' || !context.state.scope.evaluate(arg).values.has(UNKNOWN)
86+
(arg) => arg.type === 'SpreadElement' || context.state.scope.evaluate(arg).values.has(UNKNOWN)
8787
)
8888
) {
8989
return b.call(

0 commit comments

Comments
 (0)