From df2b3c2186d08e8f755271058488c4657f573aa6 Mon Sep 17 00:00:00 2001 From: Tobias Koppers Date: Tue, 27 Mar 2018 10:19:13 +0200 Subject: [PATCH] Prettier --- lib/OptionsDefaulter.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/OptionsDefaulter.js b/lib/OptionsDefaulter.js index cfa951d19ad..a2495b3746e 100644 --- a/lib/OptionsDefaulter.js +++ b/lib/OptionsDefaulter.js @@ -48,11 +48,7 @@ class OptionsDefaulter { break; case "make": if (getProperty(options, name) === undefined) - setProperty( - options, - name, - this.defaults[name].call(this, options) - ); + setProperty(options, name, this.defaults[name].call(this, options)); break; case "append": { let oldValue = getProperty(options, name);