mirror of
https://github.com/rjNemo/federation
synced 2026-06-09 03:36:38 +00:00
15 lines
No EOL
577 B
JavaScript
15 lines
No EOL
577 B
JavaScript
"use strict";
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const runtimeSupportsUploads_1 = __importDefault(require("./utils/runtimeSupportsUploads"));
|
|
const processFileUploads = (() => {
|
|
if (runtimeSupportsUploads_1.default) {
|
|
return require('graphql-upload')
|
|
.processRequest;
|
|
}
|
|
return undefined;
|
|
})();
|
|
exports.default = processFileUploads;
|
|
//# sourceMappingURL=processFileUploads.js.map
|