This release is 21 versions behind 1.0.16 — the latest version of @std/streams. Jump to latest
Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
Works with
•JSR Score100%•This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers




Downloads32,138/wk
•Published2 years ago (0.224.0)
Utilities for working with the Web Streams API
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. import { assertEquals } from "jsr:@std/assert@^0.224.0"; import { zipReadableStreams } from "./zip_readable_streams.ts"; Deno.test("zipReadableStreams()", async () => { const textStream = ReadableStream.from([ "qwertzuiopasd", "mnbvcxylkjhgfds", "apoiuztrewq0987321", ]); const textStream2 = ReadableStream.from([ "mnbvcxylkjhgfdsewr", "apoiuztrewq0987654321", "qwertzuiopasq123d", ]); const buf = await Array.fromAsync( zipReadableStreams(textStream, textStream2), ); assertEquals(buf, [ "qwertzuiopasd", "mnbvcxylkjhgfdsewr", "mnbvcxylkjhgfds", "apoiuztrewq0987654321", "apoiuztrewq0987321", "qwertzuiopasq123d", ]); });