process.getegid()
Note: this function is only available on POSIX platforms (i.e. not Windows, Android)
Gets the effective group identity of the process. (See getegid(2).) This is the numerical group id, not the group name.
if (process.getegid) { console.log(`Current gid: ${process.getegid()}`); }
Please login to continue.