summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuigi Pinca <luigipinca@gmail.com>2021-08-26 14:54:57 +0200
committerMichaël Zasso <targos@protonmail.com>2021-09-06 09:21:22 +0200
commit9e782eb758c8a40d255cb52ef731131c453b4e10 (patch)
treea5b6dea8379450bd8c9c043dc6fd4a4d7b8f8735
parentd92bd9a982a7aded3bcc99ca9af322584db58d75 (diff)
downloadnode-new-9e782eb758c8a40d255cb52ef731131c453b4e10.tar.gz
doc: remove {C,Dec}ompressionStream documentation
Documentation for `CompressionStream` and `DecompressionStream` was erroneously added in https://github.com/nodejs/node/commit/f57a0e4d8b. Fixes: https://github.com/nodejs/node/issues/39895 PR-URL: https://github.com/nodejs/node/pull/39899 Reviewed-By: Michaël Zasso <targos@protonmail.com>
-rw-r--r--doc/api/webstreams.md51
1 files changed, 0 insertions, 51 deletions
diff --git a/doc/api/webstreams.md b/doc/api/webstreams.md
index e3071478f3..fa10dcf4e2 100644
--- a/doc/api/webstreams.md
+++ b/doc/api/webstreams.md
@@ -1219,57 +1219,6 @@ added: v16.6.0
* Type: {WritableStream}
-### Class: `CompressionStream`
-<!-- YAML
-added: v16.7.0
--->
-#### `new CompressionStream(format)`
-<!-- YAML
-added: v16.7.0
--->
-
-* `format` {string} One of either `'deflate'` or `'gzip'`.
-
-#### `compressionStream.readable`
-<!-- YAML
-added: v16.7.0
--->
-
-* Type: {ReadableStream}
-
-#### `compressionStream.writable`
-<!-- YAML
-added: v16.7.0
--->
-
-* Type: {WritableStream}
-
-### Class: `DecompressionStream`
-<!-- YAML
-added: v16.7.0
--->
-
-#### `new DecompressionStream(format)`
-<!-- YAML
-added: v16.7.0
--->
-
-* `format` {string} One of either `'deflate'` or `'gzip'`.
-
-#### `decompressionStream.readable`
-<!-- YAML
-added: v16.7.0
--->
-
-* Type: {ReadableStream}
-
-#### `deccompressionStream.writable`
-<!-- YAML
-added: v16.7.0
--->
-
-* Type: {WritableStream}
-
### Utility Consumers
<!-- YAML
added: v16.7.0