Not TestedTesting not done, may not work properly
Streams

ReadableStream

Construct and consume readable byte data streams incrementally.

Checking support...
Advertisement

Interactive Input Workspace

Ready for input

Web API Execution Output

Result output will be displayed here after processing...

Native JavaScript Code Example (Zero Libraries)

const stream = new ReadableStream({
  start(controller) { controller.enqueue('Chunk 1'); controller.close(); }
});

About the ReadableStream Web API

ReadableStream represents a readable stream of byte data.

Specification:W3C & WHATWG Web API Standard
Sponsored Content