Nativefier/src/infer/inferOs.js

24 lines
525 B
JavaScript
Raw Normal View History

import os from 'os';
function inferPlatform() {
const platform = os.platform();
if ((platform === 'darwin' || platform === 'mas') || platform === 'win32' || platform === 'linux') {
return platform;
}
throw new Error(`Untested platform ${platform} detected`);
}
function inferArch() {
const arch = os.arch();
2017-05-06 21:11:51 +02:00
if (arch !== 'ia32' && arch !== 'x64' && arch !== 'arm') {
throw new Error(`Incompatible architecture ${arch} detected`);
}
return arch;
}
export default {
inferPlatform,
inferArch,
};