aboutsummaryrefslogtreecommitdiffstats
path: root/src/environment.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/environment.ts')
-rw-r--r--src/environment.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/environment.ts b/src/environment.ts
index 6b68ef432..9b727a607 100644
--- a/src/environment.ts
+++ b/src/environment.ts
@@ -1,6 +1,6 @@
1// Note: This file has now become devoid of all references to values deduced from the remote process - all those now live in the `environment-remote.js` file 1// Note: This file has now become devoid of all references to values deduced from the remote process - all those now live in the `environment-remote.js` file
2 2
3import { platform, arch, release } from 'os'; 3import { arch, release } from 'os';
4 4
5export const isMac = process.platform === 'darwin'; 5export const isMac = process.platform === 'darwin';
6export const isWindows = process.platform === 'win32'; 6export const isWindows = process.platform === 'win32';
@@ -10,7 +10,6 @@ export const electronVersion = process.versions.electron;
10export const chromeVersion = process.versions.chrome; 10export const chromeVersion = process.versions.chrome;
11export const nodeVersion = process.versions.node; 11export const nodeVersion = process.versions.node;
12 12
13export const osPlatform = platform();
14export const osArch = arch(); 13export const osArch = arch();
15export const osRelease = release(); 14export const osRelease = release();
16export const is64Bit = osArch.match(/64/); 15export const is64Bit = osArch.match(/64/);