securityos/node_modules/next/dist/server/node-polyfill-form.js

13 lines
386 B
JavaScript
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
/**
* Polyfills `FormData` and `Blob` in the Node.js runtime.
*/ "use strict";
if (!global.FormData) {
const { FormData } = require("next/dist/compiled/@edge-runtime/ponyfill");
global.FormData = FormData;
}
if (!global.Blob) {
const { Blob } = require("next/dist/compiled/@edge-runtime/ponyfill");
global.Blob = Blob;
}
//# sourceMappingURL=node-polyfill-form.js.map