summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/stream/promises.mjs
diff options
context:
space:
mode:
authorLevente Kurusa <lkurusa@kernelstuff.org>2023-05-10 12:30:02 +0200
committerGitHub <noreply@github.com>2023-05-10 12:30:02 +0200
commit3dc745c881c43b9df4aa895291b9e13186be3f17 (patch)
treeee472fa0c342be4e77cc93804ed3b8f594b0bb1c /ext/node/polyfills/stream/promises.mjs
parent50618fc0bc09ba343a9b143e60f4a9bab1ab2522 (diff)
chore(node/stream): unbundle/unminify readable-streams (#19045)
Diffstat (limited to 'ext/node/polyfills/stream/promises.mjs')
-rw-r--r--ext/node/polyfills/stream/promises.mjs4
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/node/polyfills/stream/promises.mjs b/ext/node/polyfills/stream/promises.mjs
index 69ba7fd0c..98fe38e0a 100644
--- a/ext/node/polyfills/stream/promises.mjs
+++ b/ext/node/polyfills/stream/promises.mjs
@@ -1,9 +1,7 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
-import stream from "ext:deno_node/_stream.mjs";
-
-const { finished, pipeline } = stream.promises;
+import { finished, pipeline } from "ext:deno_node/_stream.mjs";
export default {
finished,