summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/internal/streams/passthrough.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/internal/streams/passthrough.mjs')
-rw-r--r--ext/node/polyfills/internal/streams/passthrough.mjs7
1 files changed, 7 insertions, 0 deletions
diff --git a/ext/node/polyfills/internal/streams/passthrough.mjs b/ext/node/polyfills/internal/streams/passthrough.mjs
new file mode 100644
index 000000000..136a0484a
--- /dev/null
+++ b/ext/node/polyfills/internal/streams/passthrough.mjs
@@ -0,0 +1,7 @@
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+// Copyright Joyent and Node contributors. All rights reserved. MIT license.
+// deno-lint-ignore-file
+
+import { PassThrough } from "internal:deno_node/polyfills/_stream.mjs";
+
+export default PassThrough;