UNPKG

251 BTypeScriptView Raw
1/**
2Check if the process is running as root user, for example, one started with `sudo`.
3
4@example
5```
6// index.js
7import isRoot from 'is-root';
8
9console.log(isRoot());
10
11// $ sudo node index.js
12// true
13```
14*/
15export default function isRoot(): boolean;