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

10 lines
290 B
JavaScript
Raw Normal View History

import Primitives from 'next/dist/compiled/@edge-runtime/primitives'
// Polyfill Web Streams for the Node.js runtime.
if (!global.ReadableStream) {
global.ReadableStream = Primitives.ReadableStream
}
if (!global.TransformStream) {
global.TransformStream = Primitives.TransformStream
}