UEA-Prodem
This commit is contained in:
Generated
Vendored
+8
@@ -0,0 +1,8 @@
|
||||
export function toStream(bytes) {
|
||||
return new ReadableStream({
|
||||
start(controller) {
|
||||
controller.enqueue(bytes);
|
||||
controller.close();
|
||||
},
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user