mirror of
https://github.com/denoland/deno.git
synced 2024-10-30 09:08:00 -04:00
19deec4494
This commit allows the Node compatibility layer to skip environment variable permission checks when --unstable is passed and the variable name is one that Node uses. Fixes: https://github.com/denoland/deno/issues/15890
2 lines
81 B
TypeScript
2 lines
81 B
TypeScript
console.log(Deno.env.get("NODE_DEBUG") ?? "ok");
|
|
Deno.env.get("NOT_NODE_DEBUG");
|