forked from sindresorhus/get-windows
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.js
More file actions
33 lines (25 loc) · 675 Bytes
/
index.js
File metadata and controls
33 lines (25 loc) · 675 Bytes
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 = () => {
if (process.platform === 'darwin') {
return require('./lib/macos')();
}
if (process.platform === 'linux') {
return require('./lib/linux')();
}
if (process.platform === 'win32') {
return require('./lib/windows')();
}
return Promise.reject(new Error('macOS, Linux, and Windows only'));
};
module.exports.sync = () => {
if (process.platform === 'darwin') {
return require('./lib/macos').sync();
}
if (process.platform === 'linux') {
return require('./lib/linux').sync();
}
if (process.platform === 'win32') {
return require('./lib/windows').sync();
}
throw new Error('macOS, Linux, and Windows only');
};