blob: c02e4e0e1db4f71ff6bb67df1723d71c4a918f6a (
plain)
1
2
3
4
5
6
7
8
9
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
// deno-lint-ignore-file
import { Writable } from "ext:deno_node/_stream.mjs";
const { WritableState, fromWeb, toWeb } = Writable;
export default Writable;
export { fromWeb, toWeb, WritableState };
|