From 83a424f9b9058e940070979327ef255d875f6c7b Mon Sep 17 00:00:00 2001 From: Ilya Date: Sat, 28 Nov 2020 03:01:30 +0300 Subject: Fixed method for selecting env type (#498) --- src/utils/getEnvironment.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/getEnvironment.js b/src/utils/getEnvironment.js index 03f5663..da7d3ea 100644 --- a/src/utils/getEnvironment.js +++ b/src/utils/getEnvironment.js @@ -5,10 +5,10 @@ module.exports = (key) => { if (typeof WorkerGlobalScope !== 'undefined') { env.type = 'webworker'; - } else if (typeof window === 'object') { - env.type = 'browser'; } else if (isElectron()) { env.type = 'electron'; + } else if (typeof window === 'object') { + env.type = 'browser'; } else if (typeof process === 'object' && typeof require === 'function') { env.type = 'node'; } -- cgit v1.2.3