A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://developer.mozilla.org/en-US/docs/Web/API/TextEncoderStream/TextEncoderStream below:

TextEncoderStream: TextEncoderStream() constructor - Web APIs

TextEncoderStream: TextEncoderStream() constructor

Baseline Widely available

Note: This feature is available in Web Workers.

The TextEncoderStream() constructor creates a new TextEncoderStream object which is used to convert a stream of strings into bytes using UTF-8 encoding.

Syntax Parameters

None.

Examples

In this example a TextEncoderStream is created and used to upload a stream of text.

const body = textStream.pipeThrough(new TextEncoderStream());
fetch("/dest", {
  method: "POST",
  body,
  headers: { "Content-Type": "text/plain; charset=UTF-8" },
});
Specifications Browser compatibility

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4