forked from sindresorhus/get-windows
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
65 lines (49 loc) · 1.55 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
'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');
};
module.exports.getOpenWindows = options => {
if (process.platform === 'darwin') {
return require('./lib/macos.js').getOpenWindows(options);
}
if (process.platform === 'linux') {
return require('./lib/linux.js').getOpenWindows(options);
}
if (process.platform === 'win32') {
return require('./lib/windows.js').getOpenWindows(options);
}
return Promise.reject(new Error('macOS, Linux, and Windows only'));
};
module.exports.getOpenWindowsSync = options => {
if (process.platform === 'darwin') {
return require('./lib/macos.js').getOpenWindowsSync(options);
}
if (process.platform === 'linux') {
return require('./lib/linux.js').getOpenWindowsSync(options);
}
if (process.platform === 'win32') {
return require('./lib/windows.js').getOpenWindowsSync(options);
}
throw new Error('macOS, Linux, and Windows only');
};