• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1'use strict';
2
3function readableStreamFromArray(array) {
4  return new ReadableStream({
5    start(controller) {
6      for (let entry of array) {
7        controller.enqueue(entry);
8      }
9      controller.close();
10   }
11  });
12}
13