Bun 提供了许多方便函数,用于将 ReadableStream
的内容读入不同的格式。
const stream = new ReadableStream();
const blob = await Bun.readableStreamToBlob(stream);
有关 Bun 的其他 ReadableStream
转换函数的文档,请参阅 文档 > API > 实用程序。
Bun 提供了许多方便函数,用于将 ReadableStream
的内容读入不同的格式。
const stream = new ReadableStream();
const blob = await Bun.readableStreamToBlob(stream);
有关 Bun 的其他 ReadableStream
转换函数的文档,请参阅 文档 > API > 实用程序。