From ea9ebdc49d79bbff2e8d6e7e74286524143d5686 Mon Sep 17 00:00:00 2001 From: Eugene Traytyak Date: Thu, 6 Oct 2016 12:31:02 +0300 Subject: [PATCH] Update webpack.config.js Use arrow function w/o curly braces. --- webpack/webpack.config.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/webpack/webpack.config.js b/webpack/webpack.config.js index 4ce0f3d..7bc8a8b 100644 --- a/webpack/webpack.config.js +++ b/webpack/webpack.config.js @@ -85,7 +85,5 @@ export default (options) => { }, }; - return strategies.reduce((conf, strategy) => { - return strategy(conf, options); - }, config); + return strategies.reduce((conf, strategy) => strategy(conf, options), config); };