2024-08-09 11:26:39 +00:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
import { TextLineStream } from "./text_line_stream.ts";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Converts a {@linkcode ReadableStream} of {@linkcode Uint8Array}s into one of
|
|
|
|
* lines delimited by `\n` or `\r\n`. Trims the last line if empty.
|
|
|
|
*
|
docs(archive,assert,cache,cli,encoding,html,http,net,streams,text): remove unstable Markdown alert (#5672)
* docs(archive,cli,html,http,net,streams,text): remove unstable Markdown alert
* update
* fix
* update
* fmt
* fix
2024-08-22 06:55:17 +00:00
|
|
|
* @experimental **UNSTABLE**: New API, yet to be vetted.
|
|
|
|
*
|
2024-08-09 11:26:39 +00:00
|
|
|
* @param readable A stream of {@linkcode Uint8Array}s.
|
|
|
|
* @param options Stream options.
|
|
|
|
* @returns A stream of lines delimited by `\n` or `\r\n`.
|
|
|
|
*
|
|
|
|
* @example Usage
|
|
|
|
* ```ts
|
2024-09-12 04:04:21 +00:00
|
|
|
* import { toLines } from "@std/streams/unstable-to-lines";
|
2024-08-09 11:26:39 +00:00
|
|
|
* import { assertEquals } from "@std/assert/equals";
|
|
|
|
*
|
|
|
|
* const readable = ReadableStream.from([
|
|
|
|
* "qwertzu",
|
|
|
|
* "iopasd\r\nmnbvc",
|
|
|
|
* "xylk\rjhgfds\napoiuzt\r",
|
|
|
|
* "qwr\r09ei\rqwrjiowqr\r",
|
|
|
|
* ]).pipeThrough(new TextEncoderStream());
|
|
|
|
*
|
|
|
|
* assertEquals(await Array.fromAsync(toLines(readable)), [
|
|
|
|
* "qwertzuiopasd",
|
|
|
|
* "mnbvcxylk\rjhgfds",
|
|
|
|
* "apoiuzt\rqwr\r09ei\rqwrjiowqr\r",
|
|
|
|
* ]);
|
|
|
|
* ```
|
|
|
|
*/
|
|
|
|
export function toLines(
|
|
|
|
readable: ReadableStream<Uint8Array>,
|
|
|
|
options?: StreamPipeOptions,
|
|
|
|
): ReadableStream<string> {
|
|
|
|
return readable
|
|
|
|
.pipeThrough(new TextDecoderStream())
|
|
|
|
.pipeThrough(new TextLineStream(), options);
|
|
|
|
}
|