process.getgroups()
Note: this function is only available on POSIX platforms (i.e. not Windows, Android)
Returns an array with the supplementary group IDs. POSIX leaves it unspecified if the effective group ID is included but Node.js ensures it always is.
Please login to continue.