@@ -42,17 +42,17 @@ this.google.maps.plugins.loader = (function (exports) {
42
42
43
43
var objectGetOwnPropertyDescriptor = { } ;
44
44
45
- var fails$c = function ( exec ) {
45
+ var fails$d = function ( exec ) {
46
46
try {
47
47
return ! ! exec ( ) ;
48
48
} catch ( error ) {
49
49
return true ;
50
50
}
51
51
} ;
52
52
53
- var fails$b = fails$c ; // Detect IE8's incomplete defineProperty implementation
53
+ var fails$c = fails$d ; // Detect IE8's incomplete defineProperty implementation
54
54
55
- var descriptors = ! fails$b ( function ( ) {
55
+ var descriptors = ! fails$c ( function ( ) {
56
56
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
57
57
return Object . defineProperty ( { } , 1 , {
58
58
get : function ( ) {
@@ -61,8 +61,19 @@ this.google.maps.plugins.loader = (function (exports) {
61
61
} ) [ 1 ] != 7 ;
62
62
} ) ;
63
63
64
+ var fails$b = fails$d ;
65
+ var functionBindNative = ! fails$b ( function ( ) {
66
+ var test = function ( ) {
67
+ /* empty */
68
+ } . bind ( ) ; // eslint-disable-next-line no-prototype-builtins -- safe
69
+
70
+
71
+ return typeof test != 'function' || test . hasOwnProperty ( 'prototype' ) ;
72
+ } ) ;
73
+
74
+ var NATIVE_BIND$3 = functionBindNative ;
64
75
var call$9 = Function . prototype . call ;
65
- var functionCall = call$9 . bind ? call$9 . bind ( call$9 ) : function ( ) {
76
+ var functionCall = NATIVE_BIND$3 ? call$9 . bind ( call$9 ) : function ( ) {
66
77
return call$9 . apply ( call$9 , arguments ) ;
67
78
} ;
68
79
@@ -91,11 +102,12 @@ this.google.maps.plugins.loader = (function (exports) {
91
102
} ;
92
103
} ;
93
104
105
+ var NATIVE_BIND$2 = functionBindNative ;
94
106
var FunctionPrototype$2 = Function . prototype ;
95
- var bind$7 = FunctionPrototype$2 . bind ;
107
+ var bind$6 = FunctionPrototype$2 . bind ;
96
108
var call$8 = FunctionPrototype$2 . call ;
97
- var uncurryThis$g = bind$7 && bind$7 . bind ( call$8 , call$8 ) ;
98
- var functionUncurryThis = bind$7 ? function ( fn ) {
109
+ var uncurryThis$g = NATIVE_BIND$2 && bind$6 . bind ( call$8 , call$8 ) ;
110
+ var functionUncurryThis = NATIVE_BIND$2 ? function ( fn ) {
99
111
return fn && uncurryThis$g ( fn ) ;
100
112
} : function ( fn ) {
101
113
return fn && function ( ) {
@@ -113,7 +125,7 @@ this.google.maps.plugins.loader = (function (exports) {
113
125
114
126
var global$B = global$C ;
115
127
var uncurryThis$e = functionUncurryThis ;
116
- var fails$a = fails$c ;
128
+ var fails$a = fails$d ;
117
129
var classof$6 = classofRaw$1 ;
118
130
var Object$4 = global$B . Object ;
119
131
var split = uncurryThis$e ( '' . split ) ; // fallback for non-array-like ES3 and non-enumerable old V8 strings
@@ -201,7 +213,7 @@ this.google.maps.plugins.loader = (function (exports) {
201
213
202
214
/* eslint-disable es/no-symbol -- required for testing */
203
215
var V8_VERSION$3 = engineV8Version ;
204
- var fails$9 = fails$c ; // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
216
+ var fails$9 = fails$d ; // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
205
217
206
218
var nativeSymbol = ! ! Object . getOwnPropertySymbols && ! fails$9 ( function ( ) {
207
219
var symbol = Symbol ( ) ; // Chrome 38 Symbol has incorrect toString conversion
@@ -302,9 +314,11 @@ this.google.maps.plugins.loader = (function (exports) {
302
314
( shared$3 . exports = function ( key , value ) {
303
315
return store$2 [ key ] || ( store$2 [ key ] = value !== undefined ? value : { } ) ;
304
316
} ) ( 'versions' , [ ] ) . push ( {
305
- version : '3.20.2 ' ,
317
+ version : '3.20.3 ' ,
306
318
mode : 'global' ,
307
- copyright : '© 2022 Denis Pushkarev (zloirock.ru)'
319
+ copyright : '© 2014-2022 Denis Pushkarev (zloirock.ru)' ,
320
+ license : 'https://github.com/zloirock/core-js/blob/v3.20.3/LICENSE' ,
321
+ source : 'https://github.com/zloirock/core-js'
308
322
} ) ;
309
323
310
324
var global$r = global$C ;
@@ -408,8 +422,8 @@ this.google.maps.plugins.loader = (function (exports) {
408
422
} ;
409
423
410
424
var DESCRIPTORS$6 = descriptors ;
411
- var fails$8 = fails$c ;
412
- var createElement$1 = documentCreateElement$1 ; // Thank's IE8 for his funny defineProperty
425
+ var fails$8 = fails$d ;
426
+ var createElement$1 = documentCreateElement$1 ; // Thanks to IE8 for its funny defineProperty
413
427
414
428
var ie8DomDefine = ! DESCRIPTORS$6 && ! fails$8 ( function ( ) {
415
429
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
@@ -446,7 +460,7 @@ this.google.maps.plugins.loader = (function (exports) {
446
460
var objectDefineProperty = { } ;
447
461
448
462
var DESCRIPTORS$4 = descriptors ;
449
- var fails$7 = fails$c ; // V8 ~ Chrome 36-
463
+ var fails$7 = fails$d ; // V8 ~ Chrome 36-
450
464
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
451
465
452
466
var v8PrototypeDefineBug = DESCRIPTORS$4 && fails$7 ( function ( ) {
@@ -844,7 +858,7 @@ this.google.maps.plugins.loader = (function (exports) {
844
858
}
845
859
} ;
846
860
847
- var fails$6 = fails$c ;
861
+ var fails$6 = fails$d ;
848
862
var isCallable$5 = isCallable$e ;
849
863
var replacement = / # | \. p r o t o t y p e \. / ;
850
864
@@ -977,7 +991,7 @@ this.google.maps.plugins.loader = (function (exports) {
977
991
} ;
978
992
979
993
var uncurryThis$6 = functionUncurryThis ;
980
- var fails$5 = fails$c ;
994
+ var fails$5 = fails$d ;
981
995
var isCallable$3 = isCallable$e ;
982
996
var classof$3 = classof$4 ;
983
997
var getBuiltIn$4 = getBuiltIn$8 ;
@@ -1065,7 +1079,7 @@ this.google.maps.plugins.loader = (function (exports) {
1065
1079
return new ( arraySpeciesConstructor ( originalArray ) ) ( length === 0 ? 0 : length ) ;
1066
1080
} ;
1067
1081
1068
- var fails$4 = fails$c ;
1082
+ var fails$4 = fails$d ;
1069
1083
var wellKnownSymbol$8 = wellKnownSymbol$d ;
1070
1084
var V8_VERSION$2 = engineV8Version ;
1071
1085
var SPECIES$3 = wellKnownSymbol$8 ( 'species' ) ;
@@ -1090,7 +1104,7 @@ this.google.maps.plugins.loader = (function (exports) {
1090
1104
1091
1105
var $$3 = _export ;
1092
1106
var global$f = global$C ;
1093
- var fails$3 = fails$c ;
1107
+ var fails$3 = fails$d ;
1094
1108
var isArray = isArray$2 ;
1095
1109
var isObject$2 = isObject$9 ;
1096
1110
var toObject$1 = toObject$3 ;
@@ -1155,12 +1169,12 @@ this.google.maps.plugins.loader = (function (exports) {
1155
1169
}
1156
1170
} ) ;
1157
1171
1172
+ var NATIVE_BIND$1 = functionBindNative ;
1158
1173
var FunctionPrototype = Function . prototype ;
1159
1174
var apply$2 = FunctionPrototype . apply ;
1160
- var bind$6 = FunctionPrototype . bind ;
1161
1175
var call$4 = FunctionPrototype . call ; // eslint-disable-next-line es/no-reflect -- safe
1162
1176
1163
- var functionApply = typeof Reflect == 'object' && Reflect . apply || ( bind$6 ? call$4 . bind ( apply$2 ) : function ( ) {
1177
+ var functionApply = typeof Reflect == 'object' && Reflect . apply || ( NATIVE_BIND$1 ? call$4 . bind ( apply$2 ) : function ( ) {
1164
1178
return call$4 . apply ( apply$2 , arguments ) ;
1165
1179
} ) ;
1166
1180
@@ -1169,7 +1183,7 @@ this.google.maps.plugins.loader = (function (exports) {
1169
1183
var getBuiltIn$3 = getBuiltIn$8 ;
1170
1184
var apply$1 = functionApply ;
1171
1185
var uncurryThis$5 = functionUncurryThis ;
1172
- var fails$2 = fails$c ;
1186
+ var fails$2 = fails$d ;
1173
1187
var Array$1 = global$e . Array ;
1174
1188
var $stringify = getBuiltIn$3 ( 'JSON' , 'stringify' ) ;
1175
1189
var exec = uncurryThis$5 ( / ./ . exec ) ;
@@ -1215,7 +1229,7 @@ this.google.maps.plugins.loader = (function (exports) {
1215
1229
} ) ;
1216
1230
}
1217
1231
1218
- var fails$1 = fails$c ;
1232
+ var fails$1 = fails$d ;
1219
1233
1220
1234
var arrayMethodIsStrict$2 = function ( METHOD_NAME , argument ) {
1221
1235
var method = [ ] [ METHOD_NAME ] ;
@@ -1364,11 +1378,12 @@ this.google.maps.plugins.loader = (function (exports) {
1364
1378
1365
1379
var uncurryThis$2 = functionUncurryThis ;
1366
1380
var aCallable$3 = aCallable$5 ;
1381
+ var NATIVE_BIND = functionBindNative ;
1367
1382
var bind$5 = uncurryThis$2 ( uncurryThis$2 . bind ) ; // optional / simple context binding
1368
1383
1369
1384
var functionBindContext = function ( fn , that ) {
1370
1385
aCallable$3 ( fn ) ;
1371
- return that === undefined ? fn : bind$5 ? bind$5 ( fn , that ) : function ( )
1386
+ return that === undefined ? fn : NATIVE_BIND ? bind$5 ( fn , that ) : function ( )
1372
1387
/* ...args */
1373
1388
{
1374
1389
return fn . apply ( that , arguments ) ;
@@ -1607,7 +1622,7 @@ this.google.maps.plugins.loader = (function (exports) {
1607
1622
var bind$3 = functionBindContext ;
1608
1623
var isCallable$1 = isCallable$e ;
1609
1624
var hasOwn = hasOwnProperty_1 ;
1610
- var fails = fails$c ;
1625
+ var fails = fails$d ;
1611
1626
var html = html$1 ;
1612
1627
var arraySlice = arraySlice$1 ;
1613
1628
var createElement = documentCreateElement$1 ;
0 commit comments