summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/encoding/streams/resources/readable-stream-from-array.js
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/encoding/streams/resources/readable-stream-from-array.js')
-rw-r--r--testing/web-platform/tests/encoding/streams/resources/readable-stream-from-array.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/testing/web-platform/tests/encoding/streams/resources/readable-stream-from-array.js b/testing/web-platform/tests/encoding/streams/resources/readable-stream-from-array.js
new file mode 100644
index 0000000000..5c12ba8c8b
--- /dev/null
+++ b/testing/web-platform/tests/encoding/streams/resources/readable-stream-from-array.js
@@ -0,0 +1,12 @@
+'use strict';
+
+function readableStreamFromArray(array) {
+ return new ReadableStream({
+ start(controller) {
+ for (let entry of array) {
+ controller.enqueue(entry);
+ }
+ controller.close();
+ }
+ });
+}