mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-08-14 07:21:32 -04:00
Fixing linting errors
This commit is contained in:
parent
70959cc7f5
commit
b18938963f
2 changed files with 4 additions and 4 deletions
src/engine
|
@ -19,10 +19,10 @@ class Variable {
|
|||
this.type = type;
|
||||
this.isCloud = isCloud;
|
||||
switch (this.type) {
|
||||
case "":
|
||||
case '':
|
||||
this.value = 0;
|
||||
break;
|
||||
case "list":
|
||||
case 'list':
|
||||
this.value = [];
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue