CompressionStream.readable
The readable
read-only property of the CompressionStream
interface returns a ReadableStream
.
Syntax
let stream = CompressionStream.readable;
Value
Examples
The following example returns a ReadableStream
from a CompressionStream
.
let stream = new CompressionStream('gzip'); console.log(stream.readable); //a ReadableStream
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
readable |
80 |
80 |
No |
No |
67 |
No |
80 |
80 |
No |
57 |
No |
13.0 |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CompressionStream/readable