chromium/third_party/blink/web_tests/external/wpt/encoding/streams/resources/readable-stream-from-array.js

'use strict';

function readableStreamFromArray(array) {
  return new ReadableStream({
    start(controller) {
      for (let entry of array) {
        controller.enqueue(entry);
      }
      controller.close();
   }
  });
}