Skip to main content
Home
This release is 21 versions behind 1.0.16 — the latest version of @std/streams. Jump to latest

@std/streams@0.224.0
Built and signed on GitHub Actions

Works with
This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
This package works with Cloudflare Workers
This package works with Node.js
This package works with Deno
This package works with Bun
This package works with Browsers
JSR Score100%
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", ]); });