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.
None.
ExamplesIn 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