* Creates a new ReadableStream wrapping the provided iterable or async iterable. * * This can be used to adapt various kinds of objects into a readable stream, * such as an array, an async generator, or a Node.js readable stream.
(asyncIterable)
| 14062 | * such as an array, an async generator, or a Node.js readable stream. |
| 14063 | */ |
| 14064 | static from(asyncIterable) { |
| 14065 | return ReadableStreamFrom(asyncIterable); |
| 14066 | } |
| 14067 | } |
| 14068 | Object.defineProperties(ReadableStream7, { |
| 14069 | from: { enumerable: true } |
nothing calls this directly
no test coverage detected