mirror of
https://github.com/denoland/deno.git
synced 2024-12-11 18:17:48 -05:00
13 lines
341 B
JavaScript
13 lines
341 B
JavaScript
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
||
|
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
|
||
|
|
||
|
import stream from "internal:deno_node/polyfills/_stream.mjs";
|
||
|
|
||
|
const { finished, pipeline } = stream.promises;
|
||
|
|
||
|
export default {
|
||
|
finished,
|
||
|
pipeline,
|
||
|
};
|
||
|
export { finished, pipeline };
|