The writable read-only property of the CompressionStream interface returns a WritableStream.
On this page
CompressionStream: writable property
Value
Examples
The following example returns a WritableStream from a CompressionStream.
js
let stream = new CompressionStream("gzip");
console.log(stream.writable); // A WritableStream
Specifications
| Specification |
|---|
| Streams Standard # dom-generictransformstream-writable |
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 | |
writable |
80 | 80 | 113 | No | 67 | 16.4 | 80 | 80 | 113 | 57 | 16.4 | 13.0 |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CompressionStream/writable