export function toStream(bytes) { return new ReadableStream({ start(controller) { controller.enqueue(bytes); controller.close(); }, }); }