summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/internal/streams/duplex.mjs
blob: df62f764d0bf5f186b545eccb4c7cefce94b95c3 (plain)
1
2
3
4
5
6
7
8
9
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
// deno-lint-ignore-file

import { Duplex } from "internal:deno_node/_stream.mjs";
const { from, fromWeb, toWeb } = Duplex;

export default Duplex;
export { from, fromWeb, toWeb };