-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change PLATFORM to constant instead of function
- Loading branch information
Nikolai Laevskii
committed
May 25, 2023
1 parent
eb0b7f8
commit 80a318b
Showing
2 changed files
with
6 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,6 @@ | ||
| export const IS_WINDOWS = process.platform === 'win32'; | ||
| export const IS_LINUX = process.platform === 'linux'; | ||
| export const getPlatform = (): 'windows' | 'linux' | 'mac' => { | ||
| if (IS_WINDOWS) return 'windows'; | ||
| if (IS_LINUX) return 'linux'; | ||
| export const PLATFORM = ((): 'windows' | 'linux' | 'mac' => { | ||
| if (process.platform === 'win32') return 'windows'; | ||
| if (process.platform === 'linux') return 'linux'; | ||
| return 'mac'; | ||
| }; | ||
| })(); |