comply with linter

This commit is contained in:
Iuri Matias 2017-12-29 08:46:01 -05:00
parent f00fa1c4aa
commit cb5230f569
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ Plugins.prototype.getPluginsProperty = function(pluginType, property) {
//return flattened list
if (matchingProperties.length === 0) return [];
return matchingProperties.reduce((a,b) => { return a.concat(b); })
return matchingProperties.reduce((a,b) => { return a.concat(b); });
};
module.exports = Plugins;