From df7e69046987fa36c449a658a5a55a2fb8bbf8bf Mon Sep 17 00:00:00 2001 From: lee-orr Date: Thu, 7 Oct 2021 12:02:49 -0400 Subject: [PATCH] Try to use process.env.NODE_ENV directly (#1402) Support build processes that replace `process.env.NODE_ENV` with a constant string (such as webpack and Vite) by using `process.env.NODE_ENV` directly, instead of `globalThis.process && globalThis.process.env.NODE_ENV`, but do so inside a try/catch in case `process` is not defined. Co-authored-by: Daniel Huigens --- src/util.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/util.js b/src/util.js index 29407f27..a510bc39 100644 --- a/src/util.js +++ b/src/util.js @@ -26,7 +26,12 @@ import * as stream from '@openpgp/web-stream-tools'; import { getBigInteger } from './biginteger'; -const debugMode = globalThis.process && globalThis.process.env.NODE_ENV === 'development'; +const debugMode = (() => { + try { + return process.env.NODE_ENV === 'development'; // eslint-disable-line no-process-env + } catch (e) {} + return false; +})(); const util = { isString: function(data) {