0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-18 19:33:00 -05:00
denoland-deno/ext
Divy Srivastava 4101cf4274
fix(ext/node): set process fields on own instance (#27927)
Ref https://github.com/denoland/deno/pull/27891#issuecomment-2626286689

```
% deno eval 'console.log(Object.getOwnPropertyNames(process))'
[
  "_events",
  "_eventsCount",
  "_maxListeners",
  "versions",
  "stdin",
  "stdout",
  "stderr"
]

% target/debug/deno eval 'console.log(Object.getOwnPropertyNames(process))'
[
  "_events",
  "_eventsCount",
  "_maxListeners",
  "release",
  "arch",
  "report",
  "title",
  "argv",
  "argv0",
  "chdir",
  "config",
  "cpuUsage",
  "cwd",
  "env",
  "execArgv",
  "exit",
  "abort",
  "reallyExit",
  "_exiting",
  "exitCode",
  "mainModule",
  "nextTick",
  "dlopen",
  "pid",
  "ppid",
  "platform",
  "setSourceMapsEnabled",
  "hrtime",
  "_kill",
  "kill",
  "memoryUsage",
  "stderr",
  "stdin",
  "stdout",
  "version",
  "versions",
  "emitWarning",
  "binding",
  "umask",
  "getgid",
  "getuid",
  "getegid",
  "geteuid",
  "getBuiltinModule",
  "_eval",
  "execPath",
  "uptime",
  "allowedNodeEnvironmentFlags",
  "features",
  "noDeprecation"
]
```
2025-02-12 10:03:12 +01:00
..
broadcast_channel 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
cache 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
canvas 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
console 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
cron 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
crypto 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
fetch 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
ffi 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
fs 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
http 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
io 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
kv 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
napi 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
net 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
node fix(ext/node): set process fields on own instance (#27927) 2025-02-12 10:03:12 +01:00
os 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
process 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
telemetry 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
tls 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
url 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
web 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
webgpu 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
webidl 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
websocket 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00
webstorage 2.1.9 (#27886) 2025-01-31 01:21:43 +01:00