11 lines
369 B
JavaScript
11 lines
369 B
JavaScript
"use strict";
|
|
var _streams = require("next/dist/compiled/@edge-runtime/primitives/streams");
|
|
// Polyfill Web Streams for the Node.js runtime.
|
|
if (!global.ReadableStream) {
|
|
global.ReadableStream = _streams.ReadableStream;
|
|
}
|
|
if (!global.TransformStream) {
|
|
global.TransformStream = _streams.TransformStream;
|
|
}
|
|
|
|
//# sourceMappingURL=node-polyfill-web-streams.js.map
|