123456789101112131415161718192021222324 |
- 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;
- }
-
- export { commonjsGlobal as a, createCommonjsModule as c, unwrapExports as u };
- //# sourceMappingURL=_commonjsHelpers-97e6d7b1.js.map
|