style: 💄 Fix format

This commit is contained in:
peaceiris 2019-09-21 10:11:39 +09:00
parent 286eb0a87e
commit 1554388ab7
5 changed files with 42 additions and 41 deletions

View file

@ -1,14 +1,14 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
function getOS(platform) {
if (platform === "linux") {
return "Linux";
if (platform === 'linux') {
return 'Linux';
}
else if (platform === "darwin") {
return "macOS";
else if (platform === 'darwin') {
return 'macOS';
}
else if (platform === "win32") {
return "Windows";
else if (platform === 'win32') {
return 'Windows';
// throw new Error("Windows is not supported");
}
else {