UNPKG
poweroff-tool
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.1-3
1.0.1-2
1.0.0
This is application which power off a pc when it triggered
bitbucket.org/vominhtan/poweroff-tool
poweroff-tool
/
src
/
utils
/
detect-os.js
10 lines
(8 loc)
•
195 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const
isOsx =
require
(
'is-osx'
);
const
isWindows =
require
(
'is-windows'
);
const
isLinux =
require
(
'is-linux'
);
module
.
exports
= {
isMacOS
: isOsx,
isWindows
: isWindows,
isLinux
: isLinux, }