summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/stream/promises.mjs
blob: 1282ca8963647a52c58123fa8af08eaa9c804af5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2018-2024 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;

export default {
  finished,
  pipeline,
};
export { finished, pipeline };