Remove old comment

This commit is contained in:
peaceiris 2019-12-08 15:32:16 +09:00
parent 7c7d22c0de
commit a5d2cec8b8

View file

@ -5,7 +5,6 @@ export default function getOS(platform: string) {
return 'macOS'; return 'macOS';
} else if (platform === 'win32') { } else if (platform === 'win32') {
return 'Windows'; return 'Windows';
// throw new Error("Windows is not supported");
} else { } else {
throw new Error(`${platform} is not supported`); throw new Error(`${platform} is not supported`);
} }