Files
old-kitabcitab-frontend/kitabcitab/node_modules/next/dist/esm/server/node-polyfill-web-streams.js
2022-12-27 12:05:56 +01:00

10 lines
361 B
JavaScript

import { ReadableStream, TransformStream } from "next/dist/compiled/@edge-runtime/primitives/streams";
// Polyfill Web Streams for the Node.js runtime.
if (!global.ReadableStream) {
global.ReadableStream = ReadableStream;
}
if (!global.TransformStream) {
global.TransformStream = TransformStream;
}
//# sourceMappingURL=node-polyfill-web-streams.js.map