@mh-cbon/has-sysv
v1.0.1
Published
Tells if sysv init system is available on the system
Downloads
3
Readme
has-sysv
Tells if the system is running sysv init system.
Install
npm i @mh-cbon/has-sysv
Usage
require('@mh-cbon/has-sysv')(function (err) {
if (err) return console.error('this system does not run sysv');
console.log('This system seems to run sysv');
})