Checking formatting...

All matched files use Prettier code style!
This commit is contained in:
bugsounet
2020-09-22 00:26:24 +02:00
parent 19148cfc84
commit 102ff15a99

View File

@@ -221,7 +221,7 @@ var Module = Class.extend({
this.identifier = data.identifier;
this.hidden = false;
this.setConfig(data.config,data.configDeepMerge);
this.setConfig(data.config, data.configDeepMerge);
},
/**
@@ -231,7 +231,7 @@ var Module = Class.extend({
* @param {boolean} config Merge module config in deep.
*/
setConfig: function (config, deep) {
this.config= deep ? configMerge({}, this.defaults, config) : Object.assign({}, this.defaults, config);
this.config = deep ? configMerge({}, this.defaults, config) : Object.assign({}, this.defaults, config);
},
/**
@@ -481,7 +481,7 @@ function configMerge(result) {
}
}
return result;
};
}
Module.definitions = {};