11/**
2- * core-js 3.45.0
2+ * core-js 3.45.1
33 * © 2014-2025 Denis Pushkarev (zloirock.ru)
4- * license: https://github.com/zloirock/core-js/blob/v3.45.0 /LICENSE
4+ * license: https://github.com/zloirock/core-js/blob/v3.45.1 /LICENSE
55 * source: https://github.com/zloirock/core-js
66 */
77!function (undefined) { 'use strict'; /******/ (function(modules) { // webpackBootstrap
@@ -579,10 +579,10 @@ var SHARED = '__core-js_shared__';
579579var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
580580
581581(store.versions || (store.versions = [])).push({
582- version: '3.45.0 ',
582+ version: '3.45.1 ',
583583 mode: IS_PURE ? 'pure' : 'global',
584584 copyright: '© 2014-2025 Denis Pushkarev (zloirock.ru)',
585- license: 'https://github.com/zloirock/core-js/blob/v3.45.0 /LICENSE',
585+ license: 'https://github.com/zloirock/core-js/blob/v3.45.1 /LICENSE',
586586 source: 'https://github.com/zloirock/core-js'
587587});
588588
@@ -13572,14 +13572,15 @@ module.exports = function (C, adder, ENTRY) {
1357213572var $ = __webpack_require__(49);
1357313573var aMap = __webpack_require__(376);
1357413574var MapHelpers = __webpack_require__(175);
13575+ var IS_PURE = __webpack_require__(16);
1357513576
1357613577var get = MapHelpers.get;
1357713578var has = MapHelpers.has;
1357813579var set = MapHelpers.set;
1357913580
1358013581// `Map.prototype.getOrInsert` method
1358113582// https://github.com/tc39/proposal-upsert
13582- $({ target: 'Map', proto: true, real: true }, {
13583+ $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
1358313584 getOrInsert: function getOrInsert(key, value) {
1358413585 if (has(aMap(this), key)) return get(this, key);
1358513586 set(this, key, value);
@@ -13598,14 +13599,15 @@ var $ = __webpack_require__(49);
1359813599var aCallable = __webpack_require__(38);
1359913600var aMap = __webpack_require__(376);
1360013601var MapHelpers = __webpack_require__(175);
13602+ var IS_PURE = __webpack_require__(16);
1360113603
1360213604var get = MapHelpers.get;
1360313605var has = MapHelpers.has;
1360413606var set = MapHelpers.set;
1360513607
1360613608// `Map.prototype.getOrInsertComputed` method
1360713609// https://github.com/tc39/proposal-upsert
13608- $({ target: 'Map', proto: true, real: true }, {
13610+ $({ target: 'Map', proto: true, real: true, forced: IS_PURE }, {
1360913611 getOrInsertComputed: function getOrInsertComputed(key, callbackfn) {
1361013612 aMap(this);
1361113613 aCallable(callbackfn);
@@ -16248,14 +16250,15 @@ $({ target: 'WeakMap', proto: true, real: true, forced: true }, {
1624816250var $ = __webpack_require__(49);
1624916251var aWeakMap = __webpack_require__(473);
1625016252var WeakMapHelpers = __webpack_require__(453);
16253+ var IS_PURE = __webpack_require__(16);
1625116254
1625216255var get = WeakMapHelpers.get;
1625316256var has = WeakMapHelpers.has;
1625416257var set = WeakMapHelpers.set;
1625516258
1625616259// `WeakMap.prototype.getOrInsert` method
1625716260// https://github.com/tc39/proposal-upsert
16258- $({ target: 'WeakMap', proto: true, real: true }, {
16261+ $({ target: 'WeakMap', proto: true, real: true, forced: IS_PURE }, {
1625916262 getOrInsert: function getOrInsert(key, value) {
1626016263 if (has(aWeakMap(this), key)) return get(this, key);
1626116264 set(this, key, value);
@@ -16275,14 +16278,15 @@ var aCallable = __webpack_require__(38);
1627516278var aWeakMap = __webpack_require__(473);
1627616279var aWeakKey = __webpack_require__(479);
1627716280var WeakMapHelpers = __webpack_require__(453);
16281+ var IS_PURE = __webpack_require__(16);
1627816282
1627916283var get = WeakMapHelpers.get;
1628016284var has = WeakMapHelpers.has;
1628116285var set = WeakMapHelpers.set;
1628216286
1628316287// `WeakMap.prototype.getOrInsertComputed` method
1628416288// https://github.com/tc39/proposal-upsert
16285- $({ target: 'WeakMap', proto: true, real: true }, {
16289+ $({ target: 'WeakMap', proto: true, real: true, forced: IS_PURE }, {
1628616290 getOrInsertComputed: function getOrInsertComputed(key, callbackfn) {
1628716291 aWeakMap(this);
1628816292 aWeakKey(key);
0 commit comments