Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Deno.getGid

Unstable new API. yet to be vetted.

Returns the group id of the process on POSIX platforms. Returns null on windows.

console.log(Deno.getGid());

Requires allow-env permission.

function getGid(): number | null;
§
getGid(): number | null
[src]

§Return Type

§
number | null
[src]