Changes UMD callsite to be more likely to pass in the intended… (#10477)
* Changes UMD callsite to be more likely to pass in the intended object. Fixes #10476 Note: This PR should be considered pseudocode and used as an illustration of the proposed fix. I do not know nearly enough about this project to know if this is an appropriate solution to the problem, nor do I have the confidence to update the tests appropriately. * Update tests
This commit is contained in:
parent
143d159982
commit
198b4a0fbd
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -27,7 +27,11 @@ const buildWrapper = template(`
|
|||||||
|
|
||||||
GLOBAL_TO_ASSIGN;
|
GLOBAL_TO_ASSIGN;
|
||||||
}
|
}
|
||||||
})(this, function(IMPORT_NAMES) {
|
})(
|
||||||
|
typeof globalThis === "object" ? globalThis
|
||||||
|
: typeof self === "object" ? self
|
||||||
|
: this,
|
||||||
|
function(IMPORT_NAMES) {
|
||||||
})
|
})
|
||||||
`);
|
`);
|
||||||
|
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports, global.foo);
|
factory(mod.exports, global.foo);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports, _foo) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports, global.foo);
|
factory(mod.exports, global.foo);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports, _foo) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports, global.foo);
|
factory(mod.exports, global.foo);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports, _foo) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports, global.foo);
|
factory(mod.exports, global.foo);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports, _foo) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports, global.foo);
|
factory(mod.exports, global.foo);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports, _foo) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports, global.foo);
|
factory(mod.exports, global.foo);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports, _foo) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,6 +10,6 @@
|
|||||||
factory();
|
factory();
|
||||||
global.myCustomModuleName = mod.exports;
|
global.myCustomModuleName = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function () {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function () {
|
||||||
"use strict";
|
"use strict";
|
||||||
});
|
});
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports, global.evens);
|
factory(mod.exports, global.evens);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports, _evens) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _evens) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(global.foo);
|
factory(global.foo);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_foo) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_foo) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_foo = babelHelpers.interopRequireDefault(_foo);
|
_foo = babelHelpers.interopRequireDefault(_foo);
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(global.fooBAR, global.fooBAR, global.fizzBuzz);
|
factory(global.fooBAR, global.fooBAR, global.fizzBuzz);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(global.fooBar, global.fooBar, global.fizzbuzz);
|
factory(global.fooBar, global.fooBar, global.fizzbuzz);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(global.fooBAR, global.mylib.fooBar, global.fizz.buzz);
|
factory(global.fooBAR, global.mylib.fooBar, global.fizz.buzz);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(global.fooBar, global.mylibFooBar, global.fizzbuzz);
|
factory(global.fooBar, global.mylibFooBar, global.fizzbuzz);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(global.foo);
|
factory(global.foo);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (foo) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (foo) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
foo = babelHelpers.interopRequireWildcard(foo);
|
foo = babelHelpers.interopRequireWildcard(foo);
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(global.foo);
|
factory(global.foo);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_foo) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_foo) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_foo = babelHelpers.interopRequireWildcard(_foo);
|
_foo = babelHelpers.interopRequireWildcard(_foo);
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(global.foo);
|
factory(global.foo);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_foo) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_foo) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_foo.bar;
|
_foo.bar;
|
||||||
|
|||||||
@ -10,6 +10,6 @@
|
|||||||
factory(global.foo, global.fooBar, global.fooBar);
|
factory(global.foo, global.fooBar, global.fooBar);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_foo, _fooBar, _fooBar2) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_foo, _fooBar, _fooBar2) {
|
||||||
"use strict";
|
"use strict";
|
||||||
});
|
});
|
||||||
|
|||||||
@ -11,7 +11,7 @@
|
|||||||
global.foo = global.foo || {};
|
global.foo = global.foo || {};
|
||||||
global.foo.bar = mod.exports;
|
global.foo.bar = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -13,7 +13,7 @@
|
|||||||
global.foo.bar.baz = global.foo.bar.baz || {};
|
global.foo.bar.baz = global.foo.bar.baz || {};
|
||||||
global.foo.bar.baz.qux = mod.exports;
|
global.foo.bar.baz.qux = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.baz = mod.exports;
|
global.baz = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory();
|
factory();
|
||||||
global.MyLib = mod.exports;
|
global.MyLib = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function () {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function () {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
foobar();
|
foobar();
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.looseModuleNameWithOverriddenGlobalInput = mod.exports;
|
global.looseModuleNameWithOverriddenGlobalInput = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory();
|
factory();
|
||||||
global.looseModuleNameInput = mod.exports;
|
global.looseModuleNameInput = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function () {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function () {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
foobar();
|
foobar();
|
||||||
|
|||||||
@ -10,6 +10,6 @@
|
|||||||
factory(global.render);
|
factory(global.render);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_render) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_render) {
|
||||||
"use strict";
|
"use strict";
|
||||||
});
|
});
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,6 +10,6 @@
|
|||||||
factory(global.Promise);
|
factory(global.Promise);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_es6Promise) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_es6Promise) {
|
||||||
"use strict";
|
"use strict";
|
||||||
});
|
});
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports, global.foo, global.fooBar, global.fooBar);
|
factory(mod.exports, global.foo, global.fooBar, global.fooBar);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports, foo2, _fooBar, _fooBar2) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, foo2, _fooBar, _fooBar2) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_exports.__esModule = true;
|
_exports.__esModule = true;
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports, global.foo);
|
factory(mod.exports, global.foo);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports, _foo) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports, global.foo);
|
factory(mod.exports, global.foo);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports, _foo) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports, global.foo);
|
factory(mod.exports, global.foo);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports, _foo) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports, global.foo);
|
factory(mod.exports, global.foo);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports, _foo) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports, global.foo);
|
factory(mod.exports, global.foo);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports, _foo) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports, global.foo);
|
factory(mod.exports, global.foo);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports, _foo) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _foo) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,6 +10,6 @@
|
|||||||
factory();
|
factory();
|
||||||
global.myCustomModuleName = mod.exports;
|
global.myCustomModuleName = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function () {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function () {
|
||||||
"use strict";
|
"use strict";
|
||||||
});
|
});
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports, global.evens);
|
factory(mod.exports, global.evens);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports, _evens) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, _evens) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(global.foo);
|
factory(global.foo);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_foo) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_foo) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_foo = babelHelpers.interopRequireDefault(_foo);
|
_foo = babelHelpers.interopRequireDefault(_foo);
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(global.fooBAR, global.fooBAR, global.fizzBuzz);
|
factory(global.fooBAR, global.fooBAR, global.fizzBuzz);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(global.fooBar, global.fooBar, global.fizzbuzz);
|
factory(global.fooBar, global.fooBar, global.fizzbuzz);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(global.fooBAR, global.mylib.fooBar, global.fizz.buzz);
|
factory(global.fooBAR, global.mylib.fooBar, global.fizz.buzz);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(global.fooBar, global.mylibFooBar, global.fizzbuzz);
|
factory(global.fooBar, global.mylibFooBar, global.fizzbuzz);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_fooBar, _fooBar2, _fizzbuzz) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
_fooBar = babelHelpers.interopRequireDefault(_fooBar);
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(global.foo);
|
factory(global.foo);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (foo) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (foo) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
foo = babelHelpers.interopRequireWildcard(foo);
|
foo = babelHelpers.interopRequireWildcard(foo);
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(global.foo);
|
factory(global.foo);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_foo) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_foo) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_foo = babelHelpers.interopRequireWildcard(_foo);
|
_foo = babelHelpers.interopRequireWildcard(_foo);
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(global.foo);
|
factory(global.foo);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_foo) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_foo) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_foo.bar;
|
_foo.bar;
|
||||||
|
|||||||
@ -10,6 +10,6 @@
|
|||||||
factory(global.foo, global.fooBar, global.fooBar);
|
factory(global.foo, global.fooBar, global.fooBar);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_foo, _fooBar, _fooBar2) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_foo, _fooBar, _fooBar2) {
|
||||||
"use strict";
|
"use strict";
|
||||||
});
|
});
|
||||||
|
|||||||
@ -11,7 +11,7 @@
|
|||||||
global.foo = global.foo || {};
|
global.foo = global.foo || {};
|
||||||
global.foo.bar = mod.exports;
|
global.foo.bar = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -13,7 +13,7 @@
|
|||||||
global.foo.bar.baz = global.foo.bar.baz || {};
|
global.foo.bar.baz = global.foo.bar.baz || {};
|
||||||
global.foo.bar.baz.qux = mod.exports;
|
global.foo.bar.baz.qux = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.baz = mod.exports;
|
global.baz = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory();
|
factory();
|
||||||
global.MyLib = mod.exports;
|
global.MyLib = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function () {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function () {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
foobar();
|
foobar();
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.umdModuleNameWithOverriddenGlobalInput = mod.exports;
|
global.umdModuleNameWithOverriddenGlobalInput = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory();
|
factory();
|
||||||
global.umdModuleNameInput = mod.exports;
|
global.umdModuleNameInput = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function () {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function () {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
foobar();
|
foobar();
|
||||||
|
|||||||
@ -10,6 +10,6 @@
|
|||||||
factory(global.render);
|
factory(global.render);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_render) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_render) {
|
||||||
"use strict";
|
"use strict";
|
||||||
});
|
});
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,6 +10,6 @@
|
|||||||
factory(global.Promise);
|
factory(global.Promise);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_es6Promise) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_es6Promise) {
|
||||||
"use strict";
|
"use strict";
|
||||||
});
|
});
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports, global.foo, global.fooBar, global.fooBar);
|
factory(mod.exports, global.foo, global.fooBar, global.fooBar);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports, foo2, _fooBar, _fooBar2) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports, foo2, _fooBar, _fooBar2) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -10,7 +10,7 @@
|
|||||||
factory(mod.exports);
|
factory(mod.exports);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_exports) {
|
})(typeof globalThis === "object" ? globalThis : typeof self === "object" ? self : this, function (_exports) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(_exports, "__esModule", {
|
Object.defineProperty(_exports, "__esModule", {
|
||||||
|
|||||||
@ -1,3 +1,5 @@
|
|||||||
|
function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
||||||
|
|
||||||
(function (global, factory) {
|
(function (global, factory) {
|
||||||
if (typeof define === "function" && define.amd) {
|
if (typeof define === "function" && define.amd) {
|
||||||
define([], factory);
|
define([], factory);
|
||||||
@ -10,7 +12,7 @@
|
|||||||
factory();
|
factory();
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function () {
|
})((typeof globalThis === "undefined" ? "undefined" : _typeof(globalThis)) === "object" ? globalThis : (typeof self === "undefined" ? "undefined" : _typeof(self)) === "object" ? self : this, function () {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
import("foo"); // warns
|
import("foo"); // warns
|
||||||
|
|||||||
@ -1,3 +1,5 @@
|
|||||||
|
function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
|
||||||
|
|
||||||
(function (global, factory) {
|
(function (global, factory) {
|
||||||
if (typeof define === "function" && define.amd) {
|
if (typeof define === "function" && define.amd) {
|
||||||
define(["a"], factory);
|
define(["a"], factory);
|
||||||
@ -10,7 +12,7 @@
|
|||||||
factory(global.a);
|
factory(global.a);
|
||||||
global.input = mod.exports;
|
global.input = mod.exports;
|
||||||
}
|
}
|
||||||
})(this, function (_a) {
|
})((typeof globalThis === "undefined" ? "undefined" : _typeof(globalThis)) === "object" ? globalThis : (typeof self === "undefined" ? "undefined" : _typeof(self)) === "object" ? self : this, function (_a) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
_a = _interopRequireDefault(_a);
|
_a = _interopRequireDefault(_a);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user