Skip to content

Commit

Permalink
fixup! stream: graduate web streams from experimental and expose as g…
Browse files Browse the repository at this point in the history
…lobals
  • Loading branch information
aduh95 committed Mar 11, 2022
1 parent fc80fac commit 99fd962
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions doc/api/webstreams.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
added: v16.5.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/00000
pr-url: https://github.com/nodejs/node/pull/42225
description: This API is no longer experimental.
-->

Expand Down Expand Up @@ -95,8 +95,8 @@ const stream = new ReadableStream({
added: v16.5.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/00000
description: The class is now exposed on the global object.
pr-url: https://github.com/nodejs/node/pull/42225
description: This class is now exposed on the global object.
-->

#### `new ReadableStream([underlyingSource [, strategy]])`
Expand Down Expand Up @@ -385,8 +385,8 @@ port2.postMessage(stream, [stream]);
added: v16.5.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/00000
description: The class is now exposed on the global object.
pr-url: https://github.com/nodejs/node/pull/42225
description: This class is now exposed on the global object.
-->

By default, calling `readableStream.getReader()` with no arguments
Expand Down Expand Up @@ -456,8 +456,8 @@ Releases this reader's lock on the underlying {ReadableStream}.
added: v16.5.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/00000
description: The class is now exposed on the global object.
pr-url: https://github.com/nodejs/node/pull/42225
description: This class is now exposed on the global object.
-->

The `ReadableStreamBYOBReader` is an alternative consumer for
Expand Down Expand Up @@ -707,8 +707,8 @@ Signals an error that causes the {ReadableStream} to error and close.
added: v16.5.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/00000
description: The class is now exposed on the global object.
pr-url: https://github.com/nodejs/node/pull/42225
description: This class is now exposed on the global object.
-->
When using `ReadableByteStreamController` in byte-oriented
Expand Down Expand Up @@ -757,8 +757,8 @@ added: v16.5.0
added: v16.5.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/00000
description: The class is now exposed on the global object.
pr-url: https://github.com/nodejs/node/pull/42225
description: This class is now exposed on the global object.
-->
The `WritableStream` is a destination to which stream data is sent.
Expand Down Expand Up @@ -877,8 +877,8 @@ port2.postMessage(stream, [stream]);
added: v16.5.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/00000
description: The class is now exposed on the global object.
pr-url: https://github.com/nodejs/node/pull/42225
description: This class is now exposed on the global object.
-->
#### `new WritableStreamDefaultWriter(stream)`
Expand Down Expand Up @@ -968,8 +968,8 @@ Appends a new chunk of data to the {WritableStream}'s queue.
added: v16.5.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/00000
description: The class is now exposed on the global object.
pr-url: https://github.com/nodejs/node/pull/42225
description: This class is now exposed on the global object.
-->
The `WritableStreamDefaultController` manage's the {WritableStream}'s
Expand Down Expand Up @@ -1002,8 +1002,8 @@ with currently pending writes canceled.
added: v16.5.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/00000
description: The class is now exposed on the global object.
pr-url: https://github.com/nodejs/node/pull/42225
description: This class is now exposed on the global object.
-->
A `TransformStream` consists of a {ReadableStream} and a {WritableStream} that
Expand Down Expand Up @@ -1108,8 +1108,8 @@ port2.postMessage(stream, [stream]);
added: v16.5.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/00000
description: The class is now exposed on the global object.
pr-url: https://github.com/nodejs/node/pull/42225
description: This class is now exposed on the global object.
-->
The `TransformStreamDefaultController` manages the internal state
Expand Down Expand Up @@ -1162,8 +1162,8 @@ to be abruptly closed with an error.
added: v16.5.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/00000
description: The class is now exposed on the global object.
pr-url: https://github.com/nodejs/node/pull/42225
description: This class is now exposed on the global object.
-->
#### `new ByteLengthQueuingStrategy(options)`
Expand Down Expand Up @@ -1199,8 +1199,8 @@ added: v16.5.0
added: v16.5.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/00000
description: The class is now exposed on the global object.
pr-url: https://github.com/nodejs/node/pull/42225
description: This class is now exposed on the global object.
-->
#### `new CountQueuingStrategy(options)`
Expand Down Expand Up @@ -1236,8 +1236,8 @@ added: v16.5.0
added: v16.6.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/00000
description: The class is now exposed on the global object.
pr-url: https://github.com/nodejs/node/pull/42225
description: This class is now exposed on the global object.
-->
#### `new TextEncoderStream()`
Expand Down Expand Up @@ -1280,8 +1280,8 @@ added: v16.6.0
added: v16.6.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/00000
description: The class is now exposed on the global object.
pr-url: https://github.com/nodejs/node/pull/42225
description: This class is now exposed on the global object.
-->
#### `new TextDecoderStream([encoding[, options]])`
Expand Down Expand Up @@ -1355,8 +1355,8 @@ added: v16.6.0
added: v17.0.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/00000
description: The class is now exposed on the global object.
pr-url: https://github.com/nodejs/node/pull/42225
description: This class is now exposed on the global object.
-->
#### `new CompressionStream(format)`
Expand Down Expand Up @@ -1389,8 +1389,8 @@ added: v17.0.0
added: v17.0.0
changes:
- version: REPLACEME
pr-url: https://github.com/nodejs/node/pull/00000
description: The class is now exposed on the global object.
pr-url: https://github.com/nodejs/node/pull/42225
description: This class is now exposed on the global object.
-->
#### `new DecompressionStream(format)`
Expand Down

0 comments on commit 99fd962

Please sign in to comment.