1. Web
  2. Web APIs
  3. TextEncoderStream
  4. writable

TextEncoderStream: writable property

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨September 2022⁩.

Note: This feature is available in Web Workers.

The writable read-only property of the TextEncoderStream interface returns a WritableStream that accepts strings to be encoded into binary data.

Value

A WritableStream.

Examples

This example creates a TextEncoderStream that encodes strings as UTF-8. It writes some strings to the writable stream, then reads the encoded binary data from the readable stream.

js
const stream = new TextEncoderStream();
// Write data to be encoded
const data = "你好世界";
const writer = stream.writable.getWriter();
writer.write(data);
writer.close();
// Read compressed data
const reader = stream.readable.getReader();
let done = false;
let output = [];
while (!done) {
 const result = await reader.read();
 if (result.value) {
 output.push(...result.value);
 }
 done = result.done;
}
console.log(new Uint8Array(output).toBase64()); // 5L2g5aW95LiW55WM

Specifications

Specification
Streams
# dom-generictransformstream-writable

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.

AltStyle によって変換されたページ (->オリジナル) /