diff --git a/src/get-os.ts b/src/get-os.ts index ef9d50d..b94917a 100644 --- a/src/get-os.ts +++ b/src/get-os.ts @@ -5,7 +5,6 @@ export default function getOS(platform: string) { return 'macOS'; } else if (platform === 'win32') { return 'Windows'; - // throw new Error("Windows is not supported"); } else { throw new Error(`${platform} is not supported`); }