Use consistent function declaration style

This commit is contained in:
Ray Schamp 2016-10-24 11:49:34 -04:00
parent 9f0c4eb098
commit 04d7f4f019
4 changed files with 12 additions and 4 deletions
src/engine

View file

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