From a2c269e2dcc7e9905f82bccb3dc49c46eb4e646a Mon Sep 17 00:00:00 2001 From: Guillaume Martigny Date: Tue, 26 Mar 2019 17:57:17 +0100 Subject: [PATCH] Fix indent. --- src/index.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/index.js b/src/index.js index b40e0e5..3168ea5 100644 --- a/src/index.js +++ b/src/index.js @@ -35,13 +35,13 @@ const browserEnv = function (...args) { // If we're only applying specific required properties remove everything else .filter(prop => !properties || properties.includes(prop)) - // Copy what's left to the Node.js global scope - .forEach(prop => { - Object.defineProperty(global, prop, { - configurable: true, - get: () => window[prop] - }); -}); + // Copy what's left to the Node.js global scope + .forEach(prop => { + Object.defineProperty(global, prop, { + configurable: true, + get: () => window[prop] + }); + }); // Return reference to original window object return window;