Check if the process is running as superuser
npm install is-super> Check if the process is running as superuser
``bash`
npm install is-super --save
`js
import isSuper from 'is-super'
// or
const isSuper = require('is-super')
console.log(isSuper());
//=> false
``