Skip to main content
Go to Latest
function streamDecode
Re-export
import { streamDecode } from "https://deno.land/x/simple_utility@v2.0.10/mod.pure.full.ts";

Convert from stream to binary.

Examples

Example 1

const stream = streamEncode(new Uint8Array([0x00, 0x01, 0x02]));
const data = await streamDecode(stream);

Parameters

stream: ReadableStream<Uint8Array>

Returns

Promise<Uint8Array>