next
Version:
The React Framework
13 lines (12 loc) • 388 B
JavaScript
/**
* 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