rsnext/packages/next/server/node-polyfill-web-streams.js

13 lines
294 B
JavaScript
Raw Normal View History

import {
ReadableStream,
TransformStream,
} from 'next/dist/compiled/web-streams-polyfill'
// Polyfill Web Streams for the Node.js runtime.
if (!global.ReadableStream) {
global.ReadableStream = ReadableStream
}
if (!global.TransformStream) {
global.TransformStream = TransformStream
}