A bot used for https://code-your-snake.codingmaster398.repl.co/
12 lines
245 B
12 lines
245 B
3 years ago
|
export const globalThisShim = (() => {
|
||
|
if (typeof self !== "undefined") {
|
||
|
return self;
|
||
|
}
|
||
|
else if (typeof window !== "undefined") {
|
||
|
return window;
|
||
|
}
|
||
|
else {
|
||
|
return Function("return this")();
|
||
|
}
|
||
|
})();
|