| [ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Summary view] [Print] [Text view]
1 /******/ (() => { // webpackBootstrap 2 /******/ var __webpack_modules__ = ({ 3 4 /***/ 8015 5 /*!**************************************!*\ 6 !*** external "ReactRefreshRuntime" ***! 7 \**************************************/ 8 (module) { 9 10 "use strict"; 11 module.exports = ReactRefreshRuntime; 12 13 /***/ }, 14 15 /***/ 3565 16 /*!*********************************************************!*\ 17 !*** ./node_modules/core-js-pure/actual/global-this.js ***! 18 \*********************************************************/ 19 (module, __unused_webpack_exports, __webpack_require__) { 20 21 "use strict"; 22 23 var parent = __webpack_require__(/*! ../stable/global-this */ 1960); 24 25 module.exports = parent; 26 27 28 /***/ }, 29 30 /***/ 2671 31 /*!*****************************************************!*\ 32 !*** ./node_modules/core-js-pure/es/global-this.js ***! 33 \*****************************************************/ 34 (module, __unused_webpack_exports, __webpack_require__) { 35 36 "use strict"; 37 38 __webpack_require__(/*! ../modules/es.global-this */ 2344); 39 40 module.exports = __webpack_require__(/*! ../internals/global */ 1010); 41 42 43 /***/ }, 44 45 /***/ 4444 46 /*!***********************************************************!*\ 47 !*** ./node_modules/core-js-pure/features/global-this.js ***! 48 \***********************************************************/ 49 (module, __unused_webpack_exports, __webpack_require__) { 50 51 "use strict"; 52 53 module.exports = __webpack_require__(/*! ../full/global-this */ 214); 54 55 56 /***/ }, 57 58 /***/ 214 59 /*!*******************************************************!*\ 60 !*** ./node_modules/core-js-pure/full/global-this.js ***! 61 \*******************************************************/ 62 (module, __unused_webpack_exports, __webpack_require__) { 63 64 "use strict"; 65 66 // TODO: remove from `core-js@4` 67 __webpack_require__(/*! ../modules/esnext.global-this */ 397); 68 69 var parent = __webpack_require__(/*! ../actual/global-this */ 3565); 70 71 module.exports = parent; 72 73 74 /***/ }, 75 76 /***/ 2159 77 /*!***********************************************************!*\ 78 !*** ./node_modules/core-js-pure/internals/a-callable.js ***! 79 \***********************************************************/ 80 (module, __unused_webpack_exports, __webpack_require__) { 81 82 "use strict"; 83 84 var isCallable = __webpack_require__(/*! ../internals/is-callable */ 2250); 85 var tryToString = __webpack_require__(/*! ../internals/try-to-string */ 4640); 86 87 var $TypeError = TypeError; 88 89 // `Assert: IsCallable(argument) is true` 90 module.exports = function (argument) { 91 if (isCallable(argument)) return argument; 92 throw new $TypeError(tryToString(argument) + ' is not a function'); 93 }; 94 95 96 /***/ }, 97 98 /***/ 6624 99 /*!**********************************************************!*\ 100 !*** ./node_modules/core-js-pure/internals/an-object.js ***! 101 \**********************************************************/ 102 (module, __unused_webpack_exports, __webpack_require__) { 103 104 "use strict"; 105 106 var isObject = __webpack_require__(/*! ../internals/is-object */ 6285); 107 108 var $String = String; 109 var $TypeError = TypeError; 110 111 // `Assert: Type(argument) is Object` 112 module.exports = function (argument) { 113 if (isObject(argument)) return argument; 114 throw new $TypeError($String(argument) + ' is not an object'); 115 }; 116 117 118 /***/ }, 119 120 /***/ 5807 121 /*!************************************************************!*\ 122 !*** ./node_modules/core-js-pure/internals/classof-raw.js ***! 123 \************************************************************/ 124 (module, __unused_webpack_exports, __webpack_require__) { 125 126 "use strict"; 127 128 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ 1907); 129 130 var toString = uncurryThis({}.toString); 131 var stringSlice = uncurryThis(''.slice); 132 133 module.exports = function (it) { 134 return stringSlice(toString(it), 8, -1); 135 }; 136 137 138 /***/ }, 139 140 /***/ 1626 141 /*!*******************************************************************************!*\ 142 !*** ./node_modules/core-js-pure/internals/create-non-enumerable-property.js ***! 143 \*******************************************************************************/ 144 (module, __unused_webpack_exports, __webpack_require__) { 145 146 "use strict"; 147 148 var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ 9447); 149 var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ 4284); 150 var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ 5817); 151 152 module.exports = DESCRIPTORS ? function (object, key, value) { 153 return definePropertyModule.f(object, key, createPropertyDescriptor(1, value)); 154 } : function (object, key, value) { 155 object[key] = value; 156 return object; 157 }; 158 159 160 /***/ }, 161 162 /***/ 5817 163 /*!***************************************************************************!*\ 164 !*** ./node_modules/core-js-pure/internals/create-property-descriptor.js ***! 165 \***************************************************************************/ 166 (module) { 167 168 "use strict"; 169 170 module.exports = function (bitmap, value) { 171 return { 172 enumerable: !(bitmap & 1), 173 configurable: !(bitmap & 2), 174 writable: !(bitmap & 4), 175 value: value 176 }; 177 }; 178 179 180 /***/ }, 181 182 /***/ 2532 183 /*!***********************************************************************!*\ 184 !*** ./node_modules/core-js-pure/internals/define-global-property.js ***! 185 \***********************************************************************/ 186 (module, __unused_webpack_exports, __webpack_require__) { 187 188 "use strict"; 189 190 var global = __webpack_require__(/*! ../internals/global */ 1010); 191 192 // eslint-disable-next-line es/no-object-defineproperty -- safe 193 var defineProperty = Object.defineProperty; 194 195 module.exports = function (key, value) { 196 try { 197 defineProperty(global, key, { value: value, configurable: true, writable: true }); 198 } catch (error) { 199 global[key] = value; 200 } return value; 201 }; 202 203 204 /***/ }, 205 206 /***/ 9447 207 /*!************************************************************!*\ 208 !*** ./node_modules/core-js-pure/internals/descriptors.js ***! 209 \************************************************************/ 210 (module, __unused_webpack_exports, __webpack_require__) { 211 212 "use strict"; 213 214 var fails = __webpack_require__(/*! ../internals/fails */ 8828); 215 216 // Detect IE8's incomplete defineProperty implementation 217 module.exports = !fails(function () { 218 // eslint-disable-next-line es/no-object-defineproperty -- required for testing 219 return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7; 220 }); 221 222 223 /***/ }, 224 225 /***/ 9552 226 /*!************************************************************************!*\ 227 !*** ./node_modules/core-js-pure/internals/document-create-element.js ***! 228 \************************************************************************/ 229 (module, __unused_webpack_exports, __webpack_require__) { 230 231 "use strict"; 232 233 var global = __webpack_require__(/*! ../internals/global */ 1010); 234 var isObject = __webpack_require__(/*! ../internals/is-object */ 6285); 235 236 var document = global.document; 237 // typeof document.createElement is 'object' in old IE 238 var EXISTS = isObject(document) && isObject(document.createElement); 239 240 module.exports = function (it) { 241 return EXISTS ? document.createElement(it) : {}; 242 }; 243 244 245 /***/ }, 246 247 /***/ 4723 248 /*!******************************************************************!*\ 249 !*** ./node_modules/core-js-pure/internals/engine-user-agent.js ***! 250 \******************************************************************/ 251 (module) { 252 253 "use strict"; 254 255 module.exports = typeof navigator != 'undefined' && String(navigator.userAgent) || ''; 256 257 258 /***/ }, 259 260 /***/ 5683 261 /*!******************************************************************!*\ 262 !*** ./node_modules/core-js-pure/internals/engine-v8-version.js ***! 263 \******************************************************************/ 264 (module, __unused_webpack_exports, __webpack_require__) { 265 266 "use strict"; 267 268 var global = __webpack_require__(/*! ../internals/global */ 1010); 269 var userAgent = __webpack_require__(/*! ../internals/engine-user-agent */ 4723); 270 271 var process = global.process; 272 var Deno = global.Deno; 273 var versions = process && process.versions || Deno && Deno.version; 274 var v8 = versions && versions.v8; 275 var match, version; 276 277 if (v8) { 278 match = v8.split('.'); 279 // in old Chrome, versions of V8 isn't V8 = Chrome / 10 280 // but their correct versions are not interesting for us 281 version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]); 282 } 283 284 // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0` 285 // so check `userAgent` even if `.v8` exists, but 0 286 if (!version && userAgent) { 287 match = userAgent.match(/Edge\/(\d+)/); 288 if (!match || match[1] >= 74) { 289 match = userAgent.match(/Chrome\/(\d+)/); 290 if (match) version = +match[1]; 291 } 292 } 293 294 module.exports = version; 295 296 297 /***/ }, 298 299 /***/ 1091 300 /*!*******************************************************!*\ 301 !*** ./node_modules/core-js-pure/internals/export.js ***! 302 \*******************************************************/ 303 (module, __unused_webpack_exports, __webpack_require__) { 304 305 "use strict"; 306 307 var global = __webpack_require__(/*! ../internals/global */ 1010); 308 var apply = __webpack_require__(/*! ../internals/function-apply */ 6024); 309 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this-clause */ 2361); 310 var isCallable = __webpack_require__(/*! ../internals/is-callable */ 2250); 311 var getOwnPropertyDescriptor = (__webpack_require__(/*! ../internals/object-get-own-property-descriptor */ 3846).f); 312 var isForced = __webpack_require__(/*! ../internals/is-forced */ 7463); 313 var path = __webpack_require__(/*! ../internals/path */ 2046); 314 var bind = __webpack_require__(/*! ../internals/function-bind-context */ 8311); 315 var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ 1626); 316 var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ 9724); 317 318 var wrapConstructor = function (NativeConstructor) { 319 var Wrapper = function (a, b, c) { 320 if (this instanceof Wrapper) { 321 switch (arguments.length) { 322 case 0: return new NativeConstructor(); 323 case 1: return new NativeConstructor(a); 324 case 2: return new NativeConstructor(a, b); 325 } return new NativeConstructor(a, b, c); 326 } return apply(NativeConstructor, this, arguments); 327 }; 328 Wrapper.prototype = NativeConstructor.prototype; 329 return Wrapper; 330 }; 331 332 /* 333 options.target - name of the target object 334 options.global - target is the global object 335 options.stat - export as static methods of target 336 options.proto - export as prototype methods of target 337 options.real - real prototype method for the `pure` version 338 options.forced - export even if the native feature is available 339 options.bind - bind methods to the target, required for the `pure` version 340 options.wrap - wrap constructors to preventing global pollution, required for the `pure` version 341 options.unsafe - use the simple assignment of property instead of delete + defineProperty 342 options.sham - add a flag to not completely full polyfills 343 options.enumerable - export as enumerable property 344 options.dontCallGetSet - prevent calling a getter on target 345 options.name - the .name of the function if it does not match the key 346 */ 347 module.exports = function (options, source) { 348 var TARGET = options.target; 349 var GLOBAL = options.global; 350 var STATIC = options.stat; 351 var PROTO = options.proto; 352 353 var nativeSource = GLOBAL ? global : STATIC ? global[TARGET] : global[TARGET] && global[TARGET].prototype; 354 355 var target = GLOBAL ? path : path[TARGET] || createNonEnumerableProperty(path, TARGET, {})[TARGET]; 356 var targetPrototype = target.prototype; 357 358 var FORCED, USE_NATIVE, VIRTUAL_PROTOTYPE; 359 var key, sourceProperty, targetProperty, nativeProperty, resultProperty, descriptor; 360 361 for (key in source) { 362 FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced); 363 // contains in native 364 USE_NATIVE = !FORCED && nativeSource && hasOwn(nativeSource, key); 365 366 targetProperty = target[key]; 367 368 if (USE_NATIVE) if (options.dontCallGetSet) { 369 descriptor = getOwnPropertyDescriptor(nativeSource, key); 370 nativeProperty = descriptor && descriptor.value; 371 } else nativeProperty = nativeSource[key]; 372 373 // export native or implementation 374 sourceProperty = (USE_NATIVE && nativeProperty) ? nativeProperty : source[key]; 375 376 if (!FORCED && !PROTO && typeof targetProperty == typeof sourceProperty) continue; 377 378 // bind methods to global for calling from export context 379 if (options.bind && USE_NATIVE) resultProperty = bind(sourceProperty, global); 380 // wrap global constructors for prevent changes in this version 381 else if (options.wrap && USE_NATIVE) resultProperty = wrapConstructor(sourceProperty); 382 // make static versions for prototype methods 383 else if (PROTO && isCallable(sourceProperty)) resultProperty = uncurryThis(sourceProperty); 384 // default case 385 else resultProperty = sourceProperty; 386 387 // add a flag to not completely full polyfills 388 if (options.sham || (sourceProperty && sourceProperty.sham) || (targetProperty && targetProperty.sham)) { 389 createNonEnumerableProperty(resultProperty, 'sham', true); 390 } 391 392 createNonEnumerableProperty(target, key, resultProperty); 393 394 if (PROTO) { 395 VIRTUAL_PROTOTYPE = TARGET + 'Prototype'; 396 if (!hasOwn(path, VIRTUAL_PROTOTYPE)) { 397 createNonEnumerableProperty(path, VIRTUAL_PROTOTYPE, {}); 398 } 399 // export virtual prototype methods 400 createNonEnumerableProperty(path[VIRTUAL_PROTOTYPE], key, sourceProperty); 401 // export real prototype methods 402 if (options.real && targetPrototype && (FORCED || !targetPrototype[key])) { 403 createNonEnumerableProperty(targetPrototype, key, sourceProperty); 404 } 405 } 406 } 407 }; 408 409 410 /***/ }, 411 412 /***/ 8828 413 /*!******************************************************!*\ 414 !*** ./node_modules/core-js-pure/internals/fails.js ***! 415 \******************************************************/ 416 (module) { 417 418 "use strict"; 419 420 module.exports = function (exec) { 421 try { 422 return !!exec(); 423 } catch (error) { 424 return true; 425 } 426 }; 427 428 429 /***/ }, 430 431 /***/ 6024 432 /*!***************************************************************!*\ 433 !*** ./node_modules/core-js-pure/internals/function-apply.js ***! 434 \***************************************************************/ 435 (module, __unused_webpack_exports, __webpack_require__) { 436 437 "use strict"; 438 439 var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ 1505); 440 441 var FunctionPrototype = Function.prototype; 442 var apply = FunctionPrototype.apply; 443 var call = FunctionPrototype.call; 444 445 // eslint-disable-next-line es/no-reflect -- safe 446 module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () { 447 return call.apply(apply, arguments); 448 }); 449 450 451 /***/ }, 452 453 /***/ 8311 454 /*!**********************************************************************!*\ 455 !*** ./node_modules/core-js-pure/internals/function-bind-context.js ***! 456 \**********************************************************************/ 457 (module, __unused_webpack_exports, __webpack_require__) { 458 459 "use strict"; 460 461 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this-clause */ 2361); 462 var aCallable = __webpack_require__(/*! ../internals/a-callable */ 2159); 463 var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ 1505); 464 465 var bind = uncurryThis(uncurryThis.bind); 466 467 // optional / simple context binding 468 module.exports = function (fn, that) { 469 aCallable(fn); 470 return that === undefined ? fn : NATIVE_BIND ? bind(fn, that) : function (/* ...args */) { 471 return fn.apply(that, arguments); 472 }; 473 }; 474 475 476 /***/ }, 477 478 /***/ 1505 479 /*!*********************************************************************!*\ 480 !*** ./node_modules/core-js-pure/internals/function-bind-native.js ***! 481 \*********************************************************************/ 482 (module, __unused_webpack_exports, __webpack_require__) { 483 484 "use strict"; 485 486 var fails = __webpack_require__(/*! ../internals/fails */ 8828); 487 488 module.exports = !fails(function () { 489 // eslint-disable-next-line es/no-function-prototype-bind -- safe 490 var test = (function () { /* empty */ }).bind(); 491 // eslint-disable-next-line no-prototype-builtins -- safe 492 return typeof test != 'function' || test.hasOwnProperty('prototype'); 493 }); 494 495 496 /***/ }, 497 498 /***/ 3930 499 /*!**************************************************************!*\ 500 !*** ./node_modules/core-js-pure/internals/function-call.js ***! 501 \**************************************************************/ 502 (module, __unused_webpack_exports, __webpack_require__) { 503 504 "use strict"; 505 506 var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ 1505); 507 508 var call = Function.prototype.call; 509 510 module.exports = NATIVE_BIND ? call.bind(call) : function () { 511 return call.apply(call, arguments); 512 }; 513 514 515 /***/ }, 516 517 /***/ 2361 518 /*!*****************************************************************************!*\ 519 !*** ./node_modules/core-js-pure/internals/function-uncurry-this-clause.js ***! 520 \*****************************************************************************/ 521 (module, __unused_webpack_exports, __webpack_require__) { 522 523 "use strict"; 524 525 var classofRaw = __webpack_require__(/*! ../internals/classof-raw */ 5807); 526 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ 1907); 527 528 module.exports = function (fn) { 529 // Nashorn bug: 530 // https://github.com/zloirock/core-js/issues/1128 531 // https://github.com/zloirock/core-js/issues/1130 532 if (classofRaw(fn) === 'Function') return uncurryThis(fn); 533 }; 534 535 536 /***/ }, 537 538 /***/ 1907 539 /*!**********************************************************************!*\ 540 !*** ./node_modules/core-js-pure/internals/function-uncurry-this.js ***! 541 \**********************************************************************/ 542 (module, __unused_webpack_exports, __webpack_require__) { 543 544 "use strict"; 545 546 var NATIVE_BIND = __webpack_require__(/*! ../internals/function-bind-native */ 1505); 547 548 var FunctionPrototype = Function.prototype; 549 var call = FunctionPrototype.call; 550 var uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call); 551 552 module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) { 553 return function () { 554 return call.apply(fn, arguments); 555 }; 556 }; 557 558 559 /***/ }, 560 561 /***/ 5582 562 /*!*************************************************************!*\ 563 !*** ./node_modules/core-js-pure/internals/get-built-in.js ***! 564 \*************************************************************/ 565 (module, __unused_webpack_exports, __webpack_require__) { 566 567 "use strict"; 568 569 var path = __webpack_require__(/*! ../internals/path */ 2046); 570 var global = __webpack_require__(/*! ../internals/global */ 1010); 571 var isCallable = __webpack_require__(/*! ../internals/is-callable */ 2250); 572 573 var aFunction = function (variable) { 574 return isCallable(variable) ? variable : undefined; 575 }; 576 577 module.exports = function (namespace, method) { 578 return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace]) 579 : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method]; 580 }; 581 582 583 /***/ }, 584 585 /***/ 9367 586 /*!***********************************************************!*\ 587 !*** ./node_modules/core-js-pure/internals/get-method.js ***! 588 \***********************************************************/ 589 (module, __unused_webpack_exports, __webpack_require__) { 590 591 "use strict"; 592 593 var aCallable = __webpack_require__(/*! ../internals/a-callable */ 2159); 594 var isNullOrUndefined = __webpack_require__(/*! ../internals/is-null-or-undefined */ 7136); 595 596 // `GetMethod` abstract operation 597 // https://tc39.es/ecma262/#sec-getmethod 598 module.exports = function (V, P) { 599 var func = V[P]; 600 return isNullOrUndefined(func) ? undefined : aCallable(func); 601 }; 602 603 604 /***/ }, 605 606 /***/ 1010 607 /*!*******************************************************!*\ 608 !*** ./node_modules/core-js-pure/internals/global.js ***! 609 \*******************************************************/ 610 (module) { 611 612 "use strict"; 613 614 var check = function (it) { 615 return it && it.Math === Math && it; 616 }; 617 618 // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 619 module.exports = 620 // eslint-disable-next-line es/no-global-this -- safe 621 check(typeof globalThis == 'object' && globalThis) || 622 check(typeof window == 'object' && window) || 623 // eslint-disable-next-line no-restricted-globals -- safe 624 check(typeof self == 'object' && self) || 625 check(typeof globalThis == 'object' && globalThis) || 626 check(typeof this == 'object' && this) || 627 // eslint-disable-next-line no-new-func -- fallback 628 (function () { return this; })() || Function('return this')(); 629 630 631 /***/ }, 632 633 /***/ 9724 634 /*!*****************************************************************!*\ 635 !*** ./node_modules/core-js-pure/internals/has-own-property.js ***! 636 \*****************************************************************/ 637 (module, __unused_webpack_exports, __webpack_require__) { 638 639 "use strict"; 640 641 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ 1907); 642 var toObject = __webpack_require__(/*! ../internals/to-object */ 9298); 643 644 var hasOwnProperty = uncurryThis({}.hasOwnProperty); 645 646 // `HasOwnProperty` abstract operation 647 // https://tc39.es/ecma262/#sec-hasownproperty 648 // eslint-disable-next-line es/no-object-hasown -- safe 649 module.exports = Object.hasOwn || function hasOwn(it, key) { 650 return hasOwnProperty(toObject(it), key); 651 }; 652 653 654 /***/ }, 655 656 /***/ 3648 657 /*!***************************************************************!*\ 658 !*** ./node_modules/core-js-pure/internals/ie8-dom-define.js ***! 659 \***************************************************************/ 660 (module, __unused_webpack_exports, __webpack_require__) { 661 662 "use strict"; 663 664 var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ 9447); 665 var fails = __webpack_require__(/*! ../internals/fails */ 8828); 666 var createElement = __webpack_require__(/*! ../internals/document-create-element */ 9552); 667 668 // Thanks to IE8 for its funny defineProperty 669 module.exports = !DESCRIPTORS && !fails(function () { 670 // eslint-disable-next-line es/no-object-defineproperty -- required for testing 671 return Object.defineProperty(createElement('div'), 'a', { 672 get: function () { return 7; } 673 }).a !== 7; 674 }); 675 676 677 /***/ }, 678 679 /***/ 6946 680 /*!***************************************************************!*\ 681 !*** ./node_modules/core-js-pure/internals/indexed-object.js ***! 682 \***************************************************************/ 683 (module, __unused_webpack_exports, __webpack_require__) { 684 685 "use strict"; 686 687 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ 1907); 688 var fails = __webpack_require__(/*! ../internals/fails */ 8828); 689 var classof = __webpack_require__(/*! ../internals/classof-raw */ 5807); 690 691 var $Object = Object; 692 var split = uncurryThis(''.split); 693 694 // fallback for non-array-like ES3 and non-enumerable old V8 strings 695 module.exports = fails(function () { 696 // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346 697 // eslint-disable-next-line no-prototype-builtins -- safe 698 return !$Object('z').propertyIsEnumerable(0); 699 }) ? function (it) { 700 return classof(it) === 'String' ? split(it, '') : $Object(it); 701 } : $Object; 702 703 704 /***/ }, 705 706 /***/ 2250 707 /*!************************************************************!*\ 708 !*** ./node_modules/core-js-pure/internals/is-callable.js ***! 709 \************************************************************/ 710 (module) { 711 712 "use strict"; 713 714 // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot 715 var documentAll = typeof document == 'object' && document.all; 716 717 // `IsCallable` abstract operation 718 // https://tc39.es/ecma262/#sec-iscallable 719 // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing 720 module.exports = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) { 721 return typeof argument == 'function' || argument === documentAll; 722 } : function (argument) { 723 return typeof argument == 'function'; 724 }; 725 726 727 /***/ }, 728 729 /***/ 7463 730 /*!**********************************************************!*\ 731 !*** ./node_modules/core-js-pure/internals/is-forced.js ***! 732 \**********************************************************/ 733 (module, __unused_webpack_exports, __webpack_require__) { 734 735 "use strict"; 736 737 var fails = __webpack_require__(/*! ../internals/fails */ 8828); 738 var isCallable = __webpack_require__(/*! ../internals/is-callable */ 2250); 739 740 var replacement = /#|\.prototype\./; 741 742 var isForced = function (feature, detection) { 743 var value = data[normalize(feature)]; 744 return value === POLYFILL ? true 745 : value === NATIVE ? false 746 : isCallable(detection) ? fails(detection) 747 : !!detection; 748 }; 749 750 var normalize = isForced.normalize = function (string) { 751 return String(string).replace(replacement, '.').toLowerCase(); 752 }; 753 754 var data = isForced.data = {}; 755 var NATIVE = isForced.NATIVE = 'N'; 756 var POLYFILL = isForced.POLYFILL = 'P'; 757 758 module.exports = isForced; 759 760 761 /***/ }, 762 763 /***/ 7136 764 /*!*********************************************************************!*\ 765 !*** ./node_modules/core-js-pure/internals/is-null-or-undefined.js ***! 766 \*********************************************************************/ 767 (module) { 768 769 "use strict"; 770 771 // we can't use just `it == null` since of `document.all` special case 772 // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec 773 module.exports = function (it) { 774 return it === null || it === undefined; 775 }; 776 777 778 /***/ }, 779 780 /***/ 6285 781 /*!**********************************************************!*\ 782 !*** ./node_modules/core-js-pure/internals/is-object.js ***! 783 \**********************************************************/ 784 (module, __unused_webpack_exports, __webpack_require__) { 785 786 "use strict"; 787 788 var isCallable = __webpack_require__(/*! ../internals/is-callable */ 2250); 789 790 module.exports = function (it) { 791 return typeof it == 'object' ? it !== null : isCallable(it); 792 }; 793 794 795 /***/ }, 796 797 /***/ 7376 798 /*!********************************************************!*\ 799 !*** ./node_modules/core-js-pure/internals/is-pure.js ***! 800 \********************************************************/ 801 (module) { 802 803 "use strict"; 804 805 module.exports = true; 806 807 808 /***/ }, 809 810 /***/ 5594 811 /*!**********************************************************!*\ 812 !*** ./node_modules/core-js-pure/internals/is-symbol.js ***! 813 \**********************************************************/ 814 (module, __unused_webpack_exports, __webpack_require__) { 815 816 "use strict"; 817 818 var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ 5582); 819 var isCallable = __webpack_require__(/*! ../internals/is-callable */ 2250); 820 var isPrototypeOf = __webpack_require__(/*! ../internals/object-is-prototype-of */ 8280); 821 var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ 1175); 822 823 var $Object = Object; 824 825 module.exports = USE_SYMBOL_AS_UID ? function (it) { 826 return typeof it == 'symbol'; 827 } : function (it) { 828 var $Symbol = getBuiltIn('Symbol'); 829 return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, $Object(it)); 830 }; 831 832 833 /***/ }, 834 835 /***/ 4284 836 /*!***********************************************************************!*\ 837 !*** ./node_modules/core-js-pure/internals/object-define-property.js ***! 838 \***********************************************************************/ 839 (__unused_webpack_module, exports, __webpack_require__) { 840 841 "use strict"; 842 843 var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ 9447); 844 var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ 3648); 845 var V8_PROTOTYPE_DEFINE_BUG = __webpack_require__(/*! ../internals/v8-prototype-define-bug */ 8661); 846 var anObject = __webpack_require__(/*! ../internals/an-object */ 6624); 847 var toPropertyKey = __webpack_require__(/*! ../internals/to-property-key */ 470); 848 849 var $TypeError = TypeError; 850 // eslint-disable-next-line es/no-object-defineproperty -- safe 851 var $defineProperty = Object.defineProperty; 852 // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe 853 var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; 854 var ENUMERABLE = 'enumerable'; 855 var CONFIGURABLE = 'configurable'; 856 var WRITABLE = 'writable'; 857 858 // `Object.defineProperty` method 859 // https://tc39.es/ecma262/#sec-object.defineproperty 860 exports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) { 861 anObject(O); 862 P = toPropertyKey(P); 863 anObject(Attributes); 864 if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) { 865 var current = $getOwnPropertyDescriptor(O, P); 866 if (current && current[WRITABLE]) { 867 O[P] = Attributes.value; 868 Attributes = { 869 configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE], 870 enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE], 871 writable: false 872 }; 873 } 874 } return $defineProperty(O, P, Attributes); 875 } : $defineProperty : function defineProperty(O, P, Attributes) { 876 anObject(O); 877 P = toPropertyKey(P); 878 anObject(Attributes); 879 if (IE8_DOM_DEFINE) try { 880 return $defineProperty(O, P, Attributes); 881 } catch (error) { /* empty */ } 882 if ('get' in Attributes || 'set' in Attributes) throw new $TypeError('Accessors not supported'); 883 if ('value' in Attributes) O[P] = Attributes.value; 884 return O; 885 }; 886 887 888 /***/ }, 889 890 /***/ 3846 891 /*!***********************************************************************************!*\ 892 !*** ./node_modules/core-js-pure/internals/object-get-own-property-descriptor.js ***! 893 \***********************************************************************************/ 894 (__unused_webpack_module, exports, __webpack_require__) { 895 896 "use strict"; 897 898 var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ 9447); 899 var call = __webpack_require__(/*! ../internals/function-call */ 3930); 900 var propertyIsEnumerableModule = __webpack_require__(/*! ../internals/object-property-is-enumerable */ 2574); 901 var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ 5817); 902 var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ 7374); 903 var toPropertyKey = __webpack_require__(/*! ../internals/to-property-key */ 470); 904 var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ 9724); 905 var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ 3648); 906 907 // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe 908 var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; 909 910 // `Object.getOwnPropertyDescriptor` method 911 // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor 912 exports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) { 913 O = toIndexedObject(O); 914 P = toPropertyKey(P); 915 if (IE8_DOM_DEFINE) try { 916 return $getOwnPropertyDescriptor(O, P); 917 } catch (error) { /* empty */ } 918 if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]); 919 }; 920 921 922 /***/ }, 923 924 /***/ 8280 925 /*!***********************************************************************!*\ 926 !*** ./node_modules/core-js-pure/internals/object-is-prototype-of.js ***! 927 \***********************************************************************/ 928 (module, __unused_webpack_exports, __webpack_require__) { 929 930 "use strict"; 931 932 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ 1907); 933 934 module.exports = uncurryThis({}.isPrototypeOf); 935 936 937 /***/ }, 938 939 /***/ 2574 940 /*!******************************************************************************!*\ 941 !*** ./node_modules/core-js-pure/internals/object-property-is-enumerable.js ***! 942 \******************************************************************************/ 943 (__unused_webpack_module, exports) { 944 945 "use strict"; 946 947 var $propertyIsEnumerable = {}.propertyIsEnumerable; 948 // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe 949 var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; 950 951 // Nashorn ~ JDK8 bug 952 var NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1); 953 954 // `Object.prototype.propertyIsEnumerable` method implementation 955 // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable 956 exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) { 957 var descriptor = getOwnPropertyDescriptor(this, V); 958 return !!descriptor && descriptor.enumerable; 959 } : $propertyIsEnumerable; 960 961 962 /***/ }, 963 964 /***/ 581 965 /*!**********************************************************************!*\ 966 !*** ./node_modules/core-js-pure/internals/ordinary-to-primitive.js ***! 967 \**********************************************************************/ 968 (module, __unused_webpack_exports, __webpack_require__) { 969 970 "use strict"; 971 972 var call = __webpack_require__(/*! ../internals/function-call */ 3930); 973 var isCallable = __webpack_require__(/*! ../internals/is-callable */ 2250); 974 var isObject = __webpack_require__(/*! ../internals/is-object */ 6285); 975 976 var $TypeError = TypeError; 977 978 // `OrdinaryToPrimitive` abstract operation 979 // https://tc39.es/ecma262/#sec-ordinarytoprimitive 980 module.exports = function (input, pref) { 981 var fn, val; 982 if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val; 983 if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val; 984 if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val; 985 throw new $TypeError("Can't convert object to primitive value"); 986 }; 987 988 989 /***/ }, 990 991 /***/ 2046 992 /*!*****************************************************!*\ 993 !*** ./node_modules/core-js-pure/internals/path.js ***! 994 \*****************************************************/ 995 (module) { 996 997 "use strict"; 998 999 module.exports = {}; 1000 1001 1002 /***/ }, 1003 1004 /***/ 4239 1005 /*!*************************************************************************!*\ 1006 !*** ./node_modules/core-js-pure/internals/require-object-coercible.js ***! 1007 \*************************************************************************/ 1008 (module, __unused_webpack_exports, __webpack_require__) { 1009 1010 "use strict"; 1011 1012 var isNullOrUndefined = __webpack_require__(/*! ../internals/is-null-or-undefined */ 7136); 1013 1014 var $TypeError = TypeError; 1015 1016 // `RequireObjectCoercible` abstract operation 1017 // https://tc39.es/ecma262/#sec-requireobjectcoercible 1018 module.exports = function (it) { 1019 if (isNullOrUndefined(it)) throw new $TypeError("Can't call method on " + it); 1020 return it; 1021 }; 1022 1023 1024 /***/ }, 1025 1026 /***/ 6128 1027 /*!*************************************************************!*\ 1028 !*** ./node_modules/core-js-pure/internals/shared-store.js ***! 1029 \*************************************************************/ 1030 (module, __unused_webpack_exports, __webpack_require__) { 1031 1032 "use strict"; 1033 1034 var global = __webpack_require__(/*! ../internals/global */ 1010); 1035 var defineGlobalProperty = __webpack_require__(/*! ../internals/define-global-property */ 2532); 1036 1037 var SHARED = '__core-js_shared__'; 1038 var store = global[SHARED] || defineGlobalProperty(SHARED, {}); 1039 1040 module.exports = store; 1041 1042 1043 /***/ }, 1044 1045 /***/ 5816 1046 /*!*******************************************************!*\ 1047 !*** ./node_modules/core-js-pure/internals/shared.js ***! 1048 \*******************************************************/ 1049 (module, __unused_webpack_exports, __webpack_require__) { 1050 1051 "use strict"; 1052 1053 var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ 7376); 1054 var store = __webpack_require__(/*! ../internals/shared-store */ 6128); 1055 1056 (module.exports = function (key, value) { 1057 return store[key] || (store[key] = value !== undefined ? value : {}); 1058 })('versions', []).push({ 1059 version: '3.35.1', 1060 mode: IS_PURE ? 'pure' : 'global', 1061 copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)', 1062 license: 'https://github.com/zloirock/core-js/blob/v3.35.1/LICENSE', 1063 source: 'https://github.com/zloirock/core-js' 1064 }); 1065 1066 1067 /***/ }, 1068 1069 /***/ 9846 1070 /*!*****************************************************************************!*\ 1071 !*** ./node_modules/core-js-pure/internals/symbol-constructor-detection.js ***! 1072 \*****************************************************************************/ 1073 (module, __unused_webpack_exports, __webpack_require__) { 1074 1075 "use strict"; 1076 1077 /* eslint-disable es/no-symbol -- required for testing */ 1078 var V8_VERSION = __webpack_require__(/*! ../internals/engine-v8-version */ 5683); 1079 var fails = __webpack_require__(/*! ../internals/fails */ 8828); 1080 var global = __webpack_require__(/*! ../internals/global */ 1010); 1081 1082 var $String = global.String; 1083 1084 // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing 1085 module.exports = !!Object.getOwnPropertySymbols && !fails(function () { 1086 var symbol = Symbol('symbol detection'); 1087 // Chrome 38 Symbol has incorrect toString conversion 1088 // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances 1089 // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will, 1090 // of course, fail. 1091 return !$String(symbol) || !(Object(symbol) instanceof Symbol) || 1092 // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances 1093 !Symbol.sham && V8_VERSION && V8_VERSION < 41; 1094 }); 1095 1096 1097 /***/ }, 1098 1099 /***/ 7374 1100 /*!******************************************************************!*\ 1101 !*** ./node_modules/core-js-pure/internals/to-indexed-object.js ***! 1102 \******************************************************************/ 1103 (module, __unused_webpack_exports, __webpack_require__) { 1104 1105 "use strict"; 1106 1107 // toObject with fallback for non-array-like ES3 strings 1108 var IndexedObject = __webpack_require__(/*! ../internals/indexed-object */ 6946); 1109 var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ 4239); 1110 1111 module.exports = function (it) { 1112 return IndexedObject(requireObjectCoercible(it)); 1113 }; 1114 1115 1116 /***/ }, 1117 1118 /***/ 9298 1119 /*!**********************************************************!*\ 1120 !*** ./node_modules/core-js-pure/internals/to-object.js ***! 1121 \**********************************************************/ 1122 (module, __unused_webpack_exports, __webpack_require__) { 1123 1124 "use strict"; 1125 1126 var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ 4239); 1127 1128 var $Object = Object; 1129 1130 // `ToObject` abstract operation 1131 // https://tc39.es/ecma262/#sec-toobject 1132 module.exports = function (argument) { 1133 return $Object(requireObjectCoercible(argument)); 1134 }; 1135 1136 1137 /***/ }, 1138 1139 /***/ 6028 1140 /*!*************************************************************!*\ 1141 !*** ./node_modules/core-js-pure/internals/to-primitive.js ***! 1142 \*************************************************************/ 1143 (module, __unused_webpack_exports, __webpack_require__) { 1144 1145 "use strict"; 1146 1147 var call = __webpack_require__(/*! ../internals/function-call */ 3930); 1148 var isObject = __webpack_require__(/*! ../internals/is-object */ 6285); 1149 var isSymbol = __webpack_require__(/*! ../internals/is-symbol */ 5594); 1150 var getMethod = __webpack_require__(/*! ../internals/get-method */ 9367); 1151 var ordinaryToPrimitive = __webpack_require__(/*! ../internals/ordinary-to-primitive */ 581); 1152 var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ 6264); 1153 1154 var $TypeError = TypeError; 1155 var TO_PRIMITIVE = wellKnownSymbol('toPrimitive'); 1156 1157 // `ToPrimitive` abstract operation 1158 // https://tc39.es/ecma262/#sec-toprimitive 1159 module.exports = function (input, pref) { 1160 if (!isObject(input) || isSymbol(input)) return input; 1161 var exoticToPrim = getMethod(input, TO_PRIMITIVE); 1162 var result; 1163 if (exoticToPrim) { 1164 if (pref === undefined) pref = 'default'; 1165 result = call(exoticToPrim, input, pref); 1166 if (!isObject(result) || isSymbol(result)) return result; 1167 throw new $TypeError("Can't convert object to primitive value"); 1168 } 1169 if (pref === undefined) pref = 'number'; 1170 return ordinaryToPrimitive(input, pref); 1171 }; 1172 1173 1174 /***/ }, 1175 1176 /***/ 470 1177 /*!****************************************************************!*\ 1178 !*** ./node_modules/core-js-pure/internals/to-property-key.js ***! 1179 \****************************************************************/ 1180 (module, __unused_webpack_exports, __webpack_require__) { 1181 1182 "use strict"; 1183 1184 var toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ 6028); 1185 var isSymbol = __webpack_require__(/*! ../internals/is-symbol */ 5594); 1186 1187 // `ToPropertyKey` abstract operation 1188 // https://tc39.es/ecma262/#sec-topropertykey 1189 module.exports = function (argument) { 1190 var key = toPrimitive(argument, 'string'); 1191 return isSymbol(key) ? key : key + ''; 1192 }; 1193 1194 1195 /***/ }, 1196 1197 /***/ 4640 1198 /*!**************************************************************!*\ 1199 !*** ./node_modules/core-js-pure/internals/try-to-string.js ***! 1200 \**************************************************************/ 1201 (module) { 1202 1203 "use strict"; 1204 1205 var $String = String; 1206 1207 module.exports = function (argument) { 1208 try { 1209 return $String(argument); 1210 } catch (error) { 1211 return 'Object'; 1212 } 1213 }; 1214 1215 1216 /***/ }, 1217 1218 /***/ 6499 1219 /*!****************************************************!*\ 1220 !*** ./node_modules/core-js-pure/internals/uid.js ***! 1221 \****************************************************/ 1222 (module, __unused_webpack_exports, __webpack_require__) { 1223 1224 "use strict"; 1225 1226 var uncurryThis = __webpack_require__(/*! ../internals/function-uncurry-this */ 1907); 1227 1228 var id = 0; 1229 var postfix = Math.random(); 1230 var toString = uncurryThis(1.0.toString); 1231 1232 module.exports = function (key) { 1233 return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36); 1234 }; 1235 1236 1237 /***/ }, 1238 1239 /***/ 1175 1240 /*!******************************************************************!*\ 1241 !*** ./node_modules/core-js-pure/internals/use-symbol-as-uid.js ***! 1242 \******************************************************************/ 1243 (module, __unused_webpack_exports, __webpack_require__) { 1244 1245 "use strict"; 1246 1247 /* eslint-disable es/no-symbol -- required for testing */ 1248 var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/symbol-constructor-detection */ 9846); 1249 1250 module.exports = NATIVE_SYMBOL 1251 && !Symbol.sham 1252 && typeof Symbol.iterator == 'symbol'; 1253 1254 1255 /***/ }, 1256 1257 /***/ 8661 1258 /*!************************************************************************!*\ 1259 !*** ./node_modules/core-js-pure/internals/v8-prototype-define-bug.js ***! 1260 \************************************************************************/ 1261 (module, __unused_webpack_exports, __webpack_require__) { 1262 1263 "use strict"; 1264 1265 var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ 9447); 1266 var fails = __webpack_require__(/*! ../internals/fails */ 8828); 1267 1268 // V8 ~ Chrome 36- 1269 // https://bugs.chromium.org/p/v8/issues/detail?id=3334 1270 module.exports = DESCRIPTORS && fails(function () { 1271 // eslint-disable-next-line es/no-object-defineproperty -- required for testing 1272 return Object.defineProperty(function () { /* empty */ }, 'prototype', { 1273 value: 42, 1274 writable: false 1275 }).prototype !== 42; 1276 }); 1277 1278 1279 /***/ }, 1280 1281 /***/ 6264 1282 /*!******************************************************************!*\ 1283 !*** ./node_modules/core-js-pure/internals/well-known-symbol.js ***! 1284 \******************************************************************/ 1285 (module, __unused_webpack_exports, __webpack_require__) { 1286 1287 "use strict"; 1288 1289 var global = __webpack_require__(/*! ../internals/global */ 1010); 1290 var shared = __webpack_require__(/*! ../internals/shared */ 5816); 1291 var hasOwn = __webpack_require__(/*! ../internals/has-own-property */ 9724); 1292 var uid = __webpack_require__(/*! ../internals/uid */ 6499); 1293 var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/symbol-constructor-detection */ 9846); 1294 var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ 1175); 1295 1296 var Symbol = global.Symbol; 1297 var WellKnownSymbolsStore = shared('wks'); 1298 var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid; 1299 1300 module.exports = function (name) { 1301 if (!hasOwn(WellKnownSymbolsStore, name)) { 1302 WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn(Symbol, name) 1303 ? Symbol[name] 1304 : createWellKnownSymbol('Symbol.' + name); 1305 } return WellKnownSymbolsStore[name]; 1306 }; 1307 1308 1309 /***/ }, 1310 1311 /***/ 2344 1312 /*!*************************************************************!*\ 1313 !*** ./node_modules/core-js-pure/modules/es.global-this.js ***! 1314 \*************************************************************/ 1315 (__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { 1316 1317 "use strict"; 1318 1319 var $ = __webpack_require__(/*! ../internals/export */ 1091); 1320 var global = __webpack_require__(/*! ../internals/global */ 1010); 1321 1322 // `globalThis` object 1323 // https://tc39.es/ecma262/#sec-globalthis 1324 $({ global: true, forced: global.globalThis !== global }, { 1325 globalThis: global 1326 }); 1327 1328 1329 /***/ }, 1330 1331 /***/ 397 1332 /*!*****************************************************************!*\ 1333 !*** ./node_modules/core-js-pure/modules/esnext.global-this.js ***! 1334 \*****************************************************************/ 1335 (__unused_webpack_module, __unused_webpack_exports, __webpack_require__) { 1336 1337 "use strict"; 1338 1339 // TODO: Remove from `core-js@4` 1340 __webpack_require__(/*! ../modules/es.global-this */ 2344); 1341 1342 1343 /***/ }, 1344 1345 /***/ 1960 1346 /*!*********************************************************!*\ 1347 !*** ./node_modules/core-js-pure/stable/global-this.js ***! 1348 \*********************************************************/ 1349 (module, __unused_webpack_exports, __webpack_require__) { 1350 1351 "use strict"; 1352 1353 var parent = __webpack_require__(/*! ../es/global-this */ 2671); 1354 1355 module.exports = parent; 1356 1357 1358 /***/ } 1359 1360 /******/ }); 1361 /************************************************************************/ 1362 /******/ // The module cache 1363 /******/ var __webpack_module_cache__ = {}; 1364 /******/ 1365 /******/ // The require function 1366 /******/ function __webpack_require__(moduleId) { 1367 /******/ // Check if module is in cache 1368 /******/ var cachedModule = __webpack_module_cache__[moduleId]; 1369 /******/ if (cachedModule !== undefined) { 1370 /******/ return cachedModule.exports; 1371 /******/ } 1372 /******/ // Create a new module (and put it into the cache) 1373 /******/ var module = __webpack_module_cache__[moduleId] = { 1374 /******/ // no module.id needed 1375 /******/ // no module.loaded needed 1376 /******/ exports: {} 1377 /******/ }; 1378 /******/ 1379 /******/ // Execute the module function 1380 /******/ if (!(moduleId in __webpack_modules__)) { 1381 /******/ delete __webpack_module_cache__[moduleId]; 1382 /******/ var e = new Error("Cannot find module '" + moduleId + "'"); 1383 /******/ e.code = 'MODULE_NOT_FOUND'; 1384 /******/ throw e; 1385 /******/ } 1386 /******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__); 1387 /******/ 1388 /******/ // Return the exports of the module 1389 /******/ return module.exports; 1390 /******/ } 1391 /******/ 1392 /************************************************************************/ 1393 var __webpack_exports__ = {}; 1394 // This entry needs to be wrapped in an IIFE because it needs to be isolated against other modules in the chunk. 1395 (() => { 1396 /*!***************************************************************************************!*\ 1397 !*** ./node_modules/@pmmmwh/react-refresh-webpack-plugin/client/ReactRefreshEntry.js ***! 1398 \***************************************************************************************/ 1399 /* global __react_refresh_library__ */ 1400 1401 if (true) { 1402 const safeThis = __webpack_require__(/*! core-js-pure/features/global-this */ 4444); 1403 const RefreshRuntime = __webpack_require__(/*! react-refresh/runtime */ 8015); 1404 1405 if (typeof safeThis !== 'undefined') { 1406 var $RefreshInjected$ = '__reactRefreshInjected'; 1407 // Namespace the injected flag (if necessary) for monorepo compatibility 1408 if (typeof __react_refresh_library__ !== 'undefined' && __react_refresh_library__) { 1409 $RefreshInjected$ += '_' + __react_refresh_library__; 1410 } 1411 1412 // Only inject the runtime if it hasn't been injected 1413 if (!safeThis[$RefreshInjected$]) { 1414 // Inject refresh runtime into global scope 1415 RefreshRuntime.injectIntoGlobalHook(safeThis); 1416 1417 // Mark the runtime as injected to prevent double-injection 1418 safeThis[$RefreshInjected$] = true; 1419 } 1420 } 1421 } 1422 1423 })(); 1424 1425 /******/ })() 1426 ;
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated : Sat Jun 13 09:38:55 2026 | Cross-referenced by PHPXref |