std/streams/to_array_buffer.ts
Lino Le Van c46143f0ac
chore: update copyright year (#4046)
* chore: update copyright year

* fix

---------

Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com>
2024-01-02 08:11:32 +11:00

39 lines
1011 B
TypeScript

// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// This module is browser compatible.
import { concat } from "../bytes/concat.ts";
/**
* Converts a {@linkcode ReadableStream} of {@linkcode Uint8Array}s to an
* {@linkcode ArrayBuffer}. Works the same as{@linkcode Response.arrayBuffer}.
*
* @example
* ```ts
* import { toArrayBuffer } from "https://deno.land/std@$STD_VERSION/streams/to_array_buffer.ts";
*
* const stream = ReadableStream.from([
* new Uint8Array([1, 2]),
* new Uint8Array([3, 4]),
* ]);
* await toArrayBuffer(stream); // ArrayBuffer { [Uint8Contents]: <01 02 03 04>, byteLength: 4 }
* ```
*/
export async function toArrayBuffer(
readableStream: ReadableStream<Uint8Array>,
): Promise<ArrayBuffer> {
const reader = readableStream.getReader();
const chunks: Uint8Array[] = [];
while (true) {
const { done, value } = await reader.read();
if (done) {
break;
}
chunks.push(value);
}
return concat(chunks).buffer;
}