mirror of https://github.com/jkjoy/sunpeiwen.git
14 lines
449 B
JavaScript
14 lines
449 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.File = exports.Blob = exports.FormData = void 0;
|
|
const globalObject = (function () {
|
|
if (typeof globalThis !== "undefined") {
|
|
return globalThis;
|
|
}
|
|
if (typeof self !== "undefined") {
|
|
return self;
|
|
}
|
|
return window;
|
|
}());
|
|
exports.FormData = globalObject.FormData, exports.Blob = globalObject.Blob, exports.File = globalObject.File;
|