V1 with working cmdline interface for easy of using GIT
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
const globalObject = (function () {
|
||||
if (typeof globalThis !== "undefined") {
|
||||
return globalThis;
|
||||
}
|
||||
if (typeof self !== "undefined") {
|
||||
return self;
|
||||
}
|
||||
return window;
|
||||
}());
|
||||
export const { FormData, Blob, File } = globalObject;
|
||||
Reference in New Issue
Block a user