-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
Description
Rollup Version
v4.30.0
Operating System (or Browser)
Linux 6.6.69-1-lts
Node Version (if applicable)
No response
Link To Reproduction
Expected Behaviour
switch (process.env.V) {
case!1:
console.log('nope');
break;
}or
switch (process.env.V) {
case false:
console.log('nope');
break;
}Actual Behaviour
switch (process.env.V) {
casefalse:
console.log('nope');
break;
}Reactions are currently unavailable