// Copyright 2018-2020 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import is from '@sindresorhus/is'; import os from 'os'; import semver from 'semver'; export const isMacOS = (): boolean => process.platform === 'darwin'; export const isLinux = (): boolean => process.platform === 'linux'; export const isWindows = (minVersion?: string): boolean => { const osRelease = os.release(); if (process.platform !== 'win32') { return false; } return is.undefined(minVersion) ? true : semver.gte(osRelease, minVersion); }; export const isLegacy = (): boolean => { if (process.platform === 'darwin') { // 17.0.0 - is macOS 10.13 return semver.lt(os.release(), '17.0.0'); } if (process.platform === 'win32') { return semver.lt(os.release(), '9.0.0'); } return false; };