Pass with --fix

This commit is contained in:
Ray Schamp 2017-04-17 15:10:04 -04:00
parent f646a61c5b
commit e01c4ae108
41 changed files with 803 additions and 824 deletions
src/engine

View file

@ -9,7 +9,7 @@
* @param {boolean} isCloud Whether the variable is stored in the cloud.
* @constructor
*/
var Variable = function (name, value, isCloud) {
const Variable = function (name, value, isCloud) {
this.name = name;
this.value = value;
this.isCloud = isCloud;