UNPKG

poweroff-tool

Version:

This is application which power off a pc when it triggered

10 lines (8 loc) 195 B
const isOsx = require('is-osx'); const isWindows = require('is-windows'); const isLinux = require('is-linux'); module.exports = { isMacOS: isOsx, isWindows: isWindows, isLinux: isLinux, }