mirror of
https://github.com/denoland/deno.git
synced 2024-12-13 11:02:19 -05:00
e90f42cb2c
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");
|