Fixing linting errors

This commit is contained in:
Karishma Chadha 2017-11-13 14:22:36 -05:00
parent 70959cc7f5
commit b18938963f
2 changed files with 4 additions and 4 deletions
src/engine

View file

@ -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;
}