aboutsummaryrefslogtreecommitdiffstats
path: root/src/environment.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/environment.ts')
-rw-r--r--src/environment.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/environment.ts b/src/environment.ts
index e17be0b7f..c3b9e7e58 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 { arch, release } from 'os'; 3import { arch, release } from 'node: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';