12345678910111213141516171819202122232425262728 |
- "use strict";
-
- var commonjsGlobal =
- typeof globalThis !== "undefined"
- ? globalThis
- : typeof window !== "undefined"
- ? window
- : typeof global !== "undefined"
- ? global
- : typeof self !== "undefined"
- ? self
- : {};
-
- function unwrapExports(x) {
- return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default")
- ? x["default"]
- : x;
- }
-
- function createCommonjsModule(fn, module) {
- return (module = { exports: {} }), fn(module, module.exports), module.exports;
- }
-
- exports.commonjsGlobal = commonjsGlobal;
- exports.createCommonjsModule = createCommonjsModule;
- exports.unwrapExports = unwrapExports;
- //# sourceMappingURL=_commonjsHelpers-72d386ba.js.map
|