DecompressionStream
Baseline 2023Newly available
Since May 2023, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
Compression Streams API の DecompressionStream
インターフェイスは、データのストリームの展開を行うAPIです。
コンストラクター
DecompressionStream()
-
新しい
DecompressionStream
を生成します。
インスタンスプロパティ
DecompressionStream.readable
-
このオブジェクトの制御下にある
ReadableStream
のインスタンスを返します。 DecompressionStream.writable
-
このオブジェクトの制御下にある
WritableStream
のインスタンスを返します。
例
この例では、blob を gzip 圧縮を用いて展開します。
js
const ds = new DecompressionStream("gzip");
const decompressedStream = blob.stream().pipeThrough(ds);
仕様書
Specification |
---|
Compression # decompression-stream |
ブラウザーの互換性
Report problems with this compatibility data on GitHubdesktop | mobile | server | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
DecompressionStream | ||||||||||||||
DecompressionStream() constructor | ||||||||||||||
"deflate" compression | ||||||||||||||
"deflate-raw" compression | ||||||||||||||
"gzip" compression | ||||||||||||||
readable | ||||||||||||||
writable |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
- Partial support
- Partial support
- Has more compatibility info.
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.