From 3dc745c881c43b9df4aa895291b9e13186be3f17 Mon Sep 17 00:00:00 2001 From: Levente Kurusa Date: Wed, 10 May 2023 12:30:02 +0200 Subject: chore(node/stream): unbundle/unminify readable-streams (#19045) --- ext/node/polyfills/stream/promises.mjs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'ext/node/polyfills/stream/promises.mjs') 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, -- cgit v1.2.3