Skip to main content

gid

function Deno.gid
allow-sys
Jump to headinggid(): number | null

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

console.log(Deno.gid());

Requires allow-sys permission.

Return Type Jump to heading

number | null
Back to top