mirror of
https://github.com/denoland/deno.git
synced 2025-01-15 18:38:53 -05: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");
|