summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/_process/stdio.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/_process/stdio.mjs')
-rw-r--r--ext/node/polyfills/_process/stdio.mjs7
1 files changed, 7 insertions, 0 deletions
diff --git a/ext/node/polyfills/_process/stdio.mjs b/ext/node/polyfills/_process/stdio.mjs
new file mode 100644
index 000000000..4e0173dfa
--- /dev/null
+++ b/ext/node/polyfills/_process/stdio.mjs
@@ -0,0 +1,7 @@
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright Joyent, Inc. and Node.js contributors. All rights reserved. MIT license.
+
+// Lazily initializes the actual stdio objects.
+// This trick is necessary for avoiding circular dependencies between
+// stream and process modules.
+export const stdio = {};