mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
4df10f6b54
* chore(streams): complete documentation * tweaks
36 lines
885 B
TypeScript
36 lines
885 B
TypeScript
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
// This module is browser compatible.
|
|
|
|
const textDecoder = new TextDecoder();
|
|
|
|
/**
|
|
* Converts a {@linkcode ReadableSteam} of strings or {@linkcode Uint8Array}s
|
|
* to a single string. Works the same as {@linkcode Response.text}.
|
|
*
|
|
* @example
|
|
* ```ts
|
|
* import { toText } from "https://deno.land/std@$STD_VERSION/streams/to_text.ts";
|
|
*
|
|
* const stream = ReadableStream.from(["Hello, ", "world!"]);
|
|
* await toText(stream); // "Hello, world!"
|
|
* ```
|
|
*/
|
|
export async function toText(
|
|
readableStream: ReadableStream,
|
|
): Promise<string> {
|
|
const reader = readableStream.getReader();
|
|
let result = "";
|
|
|
|
while (true) {
|
|
const { done, value } = await reader.read();
|
|
|
|
if (done) {
|
|
break;
|
|
}
|
|
|
|
result += typeof value === "string" ? value : textDecoder.decode(value);
|
|
}
|
|
|
|
return result;
|
|
}
|