Last active
February 3, 2022 17:01
-
-
Save suchipi/506331b9955ac2ffc13884be24c0eec0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
var global = ( | |
typeof globalThis !== "undefined" ? globalThis : | |
typeof global !== "undefined" ? global : | |
typeof window !== "undefined" ? window : | |
typeof self !== "undefined" ? self : | |
typeof this === "object" ? this : | |
new Function("return this")() | |
); | |
var name = document.getAttribute(document.currentScript, "name"); | |
global[name] = global[name] || {}; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment