Files
2026-06-10 12:38:42 -03:00

5 lines
122 B
JavaScript

import { Readable } from "node:stream";
export function toStream(bytes) {
return Readable.from(Buffer.from(bytes));
}