From 925e02e3973b7578c7ec99a599c709f9cb779750 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Wed, 23 May 2018 16:04:39 -0700 Subject: [PATCH] Fix lint error in OS.ts --- ts/OS.ts | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/ts/OS.ts b/ts/OS.ts index 25ee963e2..e6a215f23 100644 --- a/ts/OS.ts +++ b/ts/OS.ts @@ -5,12 +5,11 @@ import semver from 'semver'; export const isMacOS = () => process.platform === 'darwin'; export const isLinux = () => process.platform === 'linux'; export const isWindows = (minVersion?: string) => { - if (process.platform !== 'win32') return false; - const osRelease = os.release(); - const isVersionValid = is.undefined(minVersion) - ? true - : semver.gte(osRelease, minVersion); - return isVersionValid; + if (process.platform !== 'win32') { + return false; + } + + return is.undefined(minVersion) ? true : semver.gte(osRelease, minVersion); };