Bun 提供了许多便捷函数,用于将 ReadableStream
的内容读取到不同的格式中。
const stream = new ReadableStream();
const buf = await Bun.readableStreamToArrayBuffer(stream);
请参阅 文档 > API > 实用工具,了解 Bun 的其他 ReadableStream
转换函数的文档。
Bun 提供了许多便捷函数,用于将 ReadableStream
的内容读取到不同的格式中。
const stream = new ReadableStream();
const buf = await Bun.readableStreamToArrayBuffer(stream);
请参阅 文档 > API > 实用工具,了解 Bun 的其他 ReadableStream
转换函数的文档。