File size: 259 Bytes
51ddcbf
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
const globalObject = (function () {
    if (typeof globalThis !== "undefined") {
        return globalThis;
    }
    if (typeof self !== "undefined") {
        return self;
    }
    return window;
}());
export const { FormData, Blob, File } = globalObject;