Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Readable
Response
response.text()
import { Readable } from "stream"; const stream = Readable.from([Buffer.from("Hello, world!")]); const text = await new Response(stream).text(); console.log(text); // "Hello, world!"
Was this page helpful?