diff options
author | Levente Kurusa <lkurusa@kernelstuff.org> | 2023-05-10 12:30:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-10 12:30:02 +0200 |
commit | 3dc745c881c43b9df4aa895291b9e13186be3f17 (patch) | |
tree | ee472fa0c342be4e77cc93804ed3b8f594b0bb1c /ext/node/polyfills/stream/promises.mjs | |
parent | 50618fc0bc09ba343a9b143e60f4a9bab1ab2522 (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.mjs | 4 |
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, |