From a5d2cec8b874957403a8ac189fad32d587da8659 Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Sun, 8 Dec 2019 15:32:16 +0900 Subject: [PATCH] Remove old comment --- src/get-os.ts | 1 - 1 file changed, 1 deletion(-) 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`); }