forked from sindresorhus/get-windows
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.js
33 lines (25 loc) · 745 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
'use strict';
module.exports = options => {
if (process.platform === 'darwin') {
return require('./lib/macos.js')(options);
}
if (process.platform === 'linux') {
return require('./lib/linux.js')(options);
}
if (process.platform === 'win32') {
return require('./lib/windows.js')(options);
}
return Promise.reject(new Error('macOS, Linux, and Windows only'));
};
module.exports.sync = options => {
if (process.platform === 'darwin') {
return require('./lib/macos.js').sync(options);
}
if (process.platform === 'linux') {
return require('./lib/linux.js').sync(options);
}
if (process.platform === 'win32') {
return require('./lib/windows.js').sync(options);
}
throw new Error('macOS, Linux, and Windows only');
};