Current File : //lib/node_modules/bower/lib/node_modules/is-root/readme.md |
# is-root [](https://travis-ci.org/sindresorhus/is-root)
> Check if the process is running as root user, eg. started with `sudo`.
## Install
```sh
$ npm install --save is-root
```
## Usage
```sh
$ sudo node index.js
```
```js
// index.js
var isRoot = require('is-root');
isRoot();
//=> true
```
## License
MIT © [Sindre Sorhus](http://sindresorhus.com)