@trackunit/iris-app-runtime-core 0.0.53-alpha-e5eca93e1.0 → 0.0.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +227 -201
- package/package.json +3 -3
package/index.js
CHANGED
|
@@ -56,7 +56,7 @@ var check = function (it) {
|
|
|
56
56
|
};
|
|
57
57
|
|
|
58
58
|
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
59
|
-
var global$
|
|
59
|
+
var global$c =
|
|
60
60
|
// eslint-disable-next-line es-x/no-global-this -- safe
|
|
61
61
|
check(typeof globalThis == 'object' && globalThis) ||
|
|
62
62
|
check(typeof window == 'object' && window) ||
|
|
@@ -68,7 +68,7 @@ var global$p =
|
|
|
68
68
|
|
|
69
69
|
var objectGetOwnPropertyDescriptor = {};
|
|
70
70
|
|
|
71
|
-
var fails$
|
|
71
|
+
var fails$c = function (exec) {
|
|
72
72
|
try {
|
|
73
73
|
return !!exec();
|
|
74
74
|
} catch (error) {
|
|
@@ -76,17 +76,17 @@ var fails$b = function (exec) {
|
|
|
76
76
|
}
|
|
77
77
|
};
|
|
78
78
|
|
|
79
|
-
var fails$
|
|
79
|
+
var fails$b = fails$c;
|
|
80
80
|
|
|
81
81
|
// Detect IE8's incomplete defineProperty implementation
|
|
82
|
-
var descriptors = !fails$
|
|
82
|
+
var descriptors = !fails$b(function () {
|
|
83
83
|
// eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
|
|
84
84
|
return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
|
|
85
85
|
});
|
|
86
86
|
|
|
87
|
-
var fails$
|
|
87
|
+
var fails$a = fails$c;
|
|
88
88
|
|
|
89
|
-
var functionBindNative = !fails$
|
|
89
|
+
var functionBindNative = !fails$a(function () {
|
|
90
90
|
// eslint-disable-next-line es-x/no-function-prototype-bind -- safe
|
|
91
91
|
var test = (function () { /* empty */ }).bind();
|
|
92
92
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
@@ -150,31 +150,28 @@ var classofRaw$1 = function (it) {
|
|
|
150
150
|
return stringSlice(toString$5(it), 8, -1);
|
|
151
151
|
};
|
|
152
152
|
|
|
153
|
-
var global$o = global$p;
|
|
154
153
|
var uncurryThis$b = functionUncurryThis;
|
|
155
|
-
var fails$
|
|
154
|
+
var fails$9 = fails$c;
|
|
156
155
|
var classof$2 = classofRaw$1;
|
|
157
156
|
|
|
158
|
-
var Object$
|
|
157
|
+
var $Object$3 = Object;
|
|
159
158
|
var split = uncurryThis$b(''.split);
|
|
160
159
|
|
|
161
160
|
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
|
162
|
-
var indexedObject = fails$
|
|
161
|
+
var indexedObject = fails$9(function () {
|
|
163
162
|
// throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
|
|
164
163
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
165
|
-
return
|
|
164
|
+
return !$Object$3('z').propertyIsEnumerable(0);
|
|
166
165
|
}) ? function (it) {
|
|
167
|
-
return classof$2(it) == 'String' ? split(it, '') : Object$
|
|
168
|
-
} : Object$
|
|
166
|
+
return classof$2(it) == 'String' ? split(it, '') : $Object$3(it);
|
|
167
|
+
} : $Object$3;
|
|
169
168
|
|
|
170
|
-
var
|
|
171
|
-
|
|
172
|
-
var TypeError$7 = global$n.TypeError;
|
|
169
|
+
var $TypeError$5 = TypeError;
|
|
173
170
|
|
|
174
171
|
// `RequireObjectCoercible` abstract operation
|
|
175
172
|
// https://tc39.es/ecma262/#sec-requireobjectcoercible
|
|
176
173
|
var requireObjectCoercible$3 = function (it) {
|
|
177
|
-
if (it == undefined) throw TypeError$
|
|
174
|
+
if (it == undefined) throw $TypeError$5("Can't call method on " + it);
|
|
178
175
|
return it;
|
|
179
176
|
};
|
|
180
177
|
|
|
@@ -188,25 +185,25 @@ var toIndexedObject$3 = function (it) {
|
|
|
188
185
|
|
|
189
186
|
// `IsCallable` abstract operation
|
|
190
187
|
// https://tc39.es/ecma262/#sec-iscallable
|
|
191
|
-
var isCallable$
|
|
188
|
+
var isCallable$b = function (argument) {
|
|
192
189
|
return typeof argument == 'function';
|
|
193
190
|
};
|
|
194
191
|
|
|
195
|
-
var isCallable$
|
|
192
|
+
var isCallable$a = isCallable$b;
|
|
196
193
|
|
|
197
194
|
var isObject$5 = function (it) {
|
|
198
|
-
return typeof it == 'object' ? it !== null : isCallable$
|
|
195
|
+
return typeof it == 'object' ? it !== null : isCallable$a(it);
|
|
199
196
|
};
|
|
200
197
|
|
|
201
|
-
var global$
|
|
202
|
-
var isCallable$
|
|
198
|
+
var global$b = global$c;
|
|
199
|
+
var isCallable$9 = isCallable$b;
|
|
203
200
|
|
|
204
201
|
var aFunction = function (argument) {
|
|
205
|
-
return isCallable$
|
|
202
|
+
return isCallable$9(argument) ? argument : undefined;
|
|
206
203
|
};
|
|
207
204
|
|
|
208
205
|
var getBuiltIn$3 = function (namespace, method) {
|
|
209
|
-
return arguments.length < 2 ? aFunction(global$
|
|
206
|
+
return arguments.length < 2 ? aFunction(global$b[namespace]) : global$b[namespace] && global$b[namespace][method];
|
|
210
207
|
};
|
|
211
208
|
|
|
212
209
|
var uncurryThis$a = functionUncurryThis;
|
|
@@ -217,11 +214,11 @@ var getBuiltIn$2 = getBuiltIn$3;
|
|
|
217
214
|
|
|
218
215
|
var engineUserAgent = getBuiltIn$2('navigator', 'userAgent') || '';
|
|
219
216
|
|
|
220
|
-
var global$
|
|
217
|
+
var global$a = global$c;
|
|
221
218
|
var userAgent = engineUserAgent;
|
|
222
219
|
|
|
223
|
-
var process = global$
|
|
224
|
-
var Deno = global$
|
|
220
|
+
var process = global$a.process;
|
|
221
|
+
var Deno = global$a.Deno;
|
|
225
222
|
var versions = process && process.versions || Deno && Deno.version;
|
|
226
223
|
var v8 = versions && versions.v8;
|
|
227
224
|
var match, version;
|
|
@@ -248,10 +245,10 @@ var engineV8Version = version;
|
|
|
248
245
|
/* eslint-disable es-x/no-symbol -- required for testing */
|
|
249
246
|
|
|
250
247
|
var V8_VERSION = engineV8Version;
|
|
251
|
-
var fails$
|
|
248
|
+
var fails$8 = fails$c;
|
|
252
249
|
|
|
253
250
|
// eslint-disable-next-line es-x/no-object-getownpropertysymbols -- required for testing
|
|
254
|
-
var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$
|
|
251
|
+
var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$8(function () {
|
|
255
252
|
var symbol = Symbol();
|
|
256
253
|
// Chrome 38 Symbol has incorrect toString conversion
|
|
257
254
|
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
|
|
@@ -268,43 +265,39 @@ var useSymbolAsUid = NATIVE_SYMBOL$1
|
|
|
268
265
|
&& !Symbol.sham
|
|
269
266
|
&& typeof Symbol.iterator == 'symbol';
|
|
270
267
|
|
|
271
|
-
var global$k = global$p;
|
|
272
268
|
var getBuiltIn$1 = getBuiltIn$3;
|
|
273
|
-
var isCallable$
|
|
269
|
+
var isCallable$8 = isCallable$b;
|
|
274
270
|
var isPrototypeOf = objectIsPrototypeOf;
|
|
275
271
|
var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
|
|
276
272
|
|
|
277
|
-
var Object$
|
|
273
|
+
var $Object$2 = Object;
|
|
278
274
|
|
|
279
275
|
var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function (it) {
|
|
280
276
|
return typeof it == 'symbol';
|
|
281
277
|
} : function (it) {
|
|
282
278
|
var $Symbol = getBuiltIn$1('Symbol');
|
|
283
|
-
return isCallable$
|
|
279
|
+
return isCallable$8($Symbol) && isPrototypeOf($Symbol.prototype, $Object$2(it));
|
|
284
280
|
};
|
|
285
281
|
|
|
286
|
-
var
|
|
287
|
-
|
|
288
|
-
var String$3 = global$j.String;
|
|
282
|
+
var $String$2 = String;
|
|
289
283
|
|
|
290
284
|
var tryToString$1 = function (argument) {
|
|
291
285
|
try {
|
|
292
|
-
return String$
|
|
286
|
+
return $String$2(argument);
|
|
293
287
|
} catch (error) {
|
|
294
288
|
return 'Object';
|
|
295
289
|
}
|
|
296
290
|
};
|
|
297
291
|
|
|
298
|
-
var
|
|
299
|
-
var isCallable$6 = isCallable$a;
|
|
292
|
+
var isCallable$7 = isCallable$b;
|
|
300
293
|
var tryToString = tryToString$1;
|
|
301
294
|
|
|
302
|
-
var TypeError$
|
|
295
|
+
var $TypeError$4 = TypeError;
|
|
303
296
|
|
|
304
297
|
// `Assert: IsCallable(argument) is true`
|
|
305
298
|
var aCallable$1 = function (argument) {
|
|
306
|
-
if (isCallable$
|
|
307
|
-
throw TypeError$
|
|
299
|
+
if (isCallable$7(argument)) return argument;
|
|
300
|
+
throw $TypeError$4(tryToString(argument) + ' is not a function');
|
|
308
301
|
};
|
|
309
302
|
|
|
310
303
|
var aCallable = aCallable$1;
|
|
@@ -316,43 +309,42 @@ var getMethod$1 = function (V, P) {
|
|
|
316
309
|
return func == null ? undefined : aCallable(func);
|
|
317
310
|
};
|
|
318
311
|
|
|
319
|
-
var global$h = global$p;
|
|
320
312
|
var call$3 = functionCall;
|
|
321
|
-
var isCallable$
|
|
313
|
+
var isCallable$6 = isCallable$b;
|
|
322
314
|
var isObject$4 = isObject$5;
|
|
323
315
|
|
|
324
|
-
var TypeError$
|
|
316
|
+
var $TypeError$3 = TypeError;
|
|
325
317
|
|
|
326
318
|
// `OrdinaryToPrimitive` abstract operation
|
|
327
319
|
// https://tc39.es/ecma262/#sec-ordinarytoprimitive
|
|
328
320
|
var ordinaryToPrimitive$1 = function (input, pref) {
|
|
329
321
|
var fn, val;
|
|
330
|
-
if (pref === 'string' && isCallable$
|
|
331
|
-
if (isCallable$
|
|
332
|
-
if (pref !== 'string' && isCallable$
|
|
333
|
-
throw TypeError$
|
|
322
|
+
if (pref === 'string' && isCallable$6(fn = input.toString) && !isObject$4(val = call$3(fn, input))) return val;
|
|
323
|
+
if (isCallable$6(fn = input.valueOf) && !isObject$4(val = call$3(fn, input))) return val;
|
|
324
|
+
if (pref !== 'string' && isCallable$6(fn = input.toString) && !isObject$4(val = call$3(fn, input))) return val;
|
|
325
|
+
throw $TypeError$3("Can't convert object to primitive value");
|
|
334
326
|
};
|
|
335
327
|
|
|
336
328
|
var shared$3 = {exports: {}};
|
|
337
329
|
|
|
338
|
-
var global$
|
|
330
|
+
var global$9 = global$c;
|
|
339
331
|
|
|
340
332
|
// eslint-disable-next-line es-x/no-object-defineproperty -- safe
|
|
341
|
-
var defineProperty$
|
|
333
|
+
var defineProperty$2 = Object.defineProperty;
|
|
342
334
|
|
|
343
|
-
var
|
|
335
|
+
var defineGlobalProperty$3 = function (key, value) {
|
|
344
336
|
try {
|
|
345
|
-
defineProperty$
|
|
337
|
+
defineProperty$2(global$9, key, { value: value, configurable: true, writable: true });
|
|
346
338
|
} catch (error) {
|
|
347
|
-
global$
|
|
339
|
+
global$9[key] = value;
|
|
348
340
|
} return value;
|
|
349
341
|
};
|
|
350
342
|
|
|
351
|
-
var global$
|
|
352
|
-
var
|
|
343
|
+
var global$8 = global$c;
|
|
344
|
+
var defineGlobalProperty$2 = defineGlobalProperty$3;
|
|
353
345
|
|
|
354
346
|
var SHARED = '__core-js_shared__';
|
|
355
|
-
var store$3 = global$
|
|
347
|
+
var store$3 = global$8[SHARED] || defineGlobalProperty$2(SHARED, {});
|
|
356
348
|
|
|
357
349
|
var sharedStore = store$3;
|
|
358
350
|
|
|
@@ -361,22 +353,21 @@ var store$2 = sharedStore;
|
|
|
361
353
|
(shared$3.exports = function (key, value) {
|
|
362
354
|
return store$2[key] || (store$2[key] = value !== undefined ? value : {});
|
|
363
355
|
})('versions', []).push({
|
|
364
|
-
version: '3.
|
|
356
|
+
version: '3.24.1',
|
|
365
357
|
mode: 'global',
|
|
366
358
|
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
|
|
367
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.
|
|
359
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.24.1/LICENSE',
|
|
368
360
|
source: 'https://github.com/zloirock/core-js'
|
|
369
361
|
});
|
|
370
362
|
|
|
371
|
-
var global$e = global$p;
|
|
372
363
|
var requireObjectCoercible$1 = requireObjectCoercible$3;
|
|
373
364
|
|
|
374
|
-
var Object$
|
|
365
|
+
var $Object$1 = Object;
|
|
375
366
|
|
|
376
367
|
// `ToObject` abstract operation
|
|
377
368
|
// https://tc39.es/ecma262/#sec-toobject
|
|
378
369
|
var toObject$2 = function (argument) {
|
|
379
|
-
return Object$
|
|
370
|
+
return $Object$1(requireObjectCoercible$1(argument));
|
|
380
371
|
};
|
|
381
372
|
|
|
382
373
|
var uncurryThis$9 = functionUncurryThis;
|
|
@@ -401,7 +392,7 @@ var uid$2 = function (key) {
|
|
|
401
392
|
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$4(++id + postfix, 36);
|
|
402
393
|
};
|
|
403
394
|
|
|
404
|
-
var global$
|
|
395
|
+
var global$7 = global$c;
|
|
405
396
|
var shared$2 = shared$3.exports;
|
|
406
397
|
var hasOwn$6 = hasOwnProperty_1;
|
|
407
398
|
var uid$1 = uid$2;
|
|
@@ -409,7 +400,7 @@ var NATIVE_SYMBOL = nativeSymbol;
|
|
|
409
400
|
var USE_SYMBOL_AS_UID = useSymbolAsUid;
|
|
410
401
|
|
|
411
402
|
var WellKnownSymbolsStore = shared$2('wks');
|
|
412
|
-
var Symbol$3 = global$
|
|
403
|
+
var Symbol$3 = global$7.Symbol;
|
|
413
404
|
var symbolFor = Symbol$3 && Symbol$3['for'];
|
|
414
405
|
var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$3 : Symbol$3 && Symbol$3.withoutSetter || uid$1;
|
|
415
406
|
|
|
@@ -426,7 +417,6 @@ var wellKnownSymbol$3 = function (name) {
|
|
|
426
417
|
} return WellKnownSymbolsStore[name];
|
|
427
418
|
};
|
|
428
419
|
|
|
429
|
-
var global$c = global$p;
|
|
430
420
|
var call$2 = functionCall;
|
|
431
421
|
var isObject$3 = isObject$5;
|
|
432
422
|
var isSymbol$1 = isSymbol$2;
|
|
@@ -434,7 +424,7 @@ var getMethod = getMethod$1;
|
|
|
434
424
|
var ordinaryToPrimitive = ordinaryToPrimitive$1;
|
|
435
425
|
var wellKnownSymbol$2 = wellKnownSymbol$3;
|
|
436
426
|
|
|
437
|
-
var TypeError$
|
|
427
|
+
var $TypeError$2 = TypeError;
|
|
438
428
|
var TO_PRIMITIVE = wellKnownSymbol$2('toPrimitive');
|
|
439
429
|
|
|
440
430
|
// `ToPrimitive` abstract operation
|
|
@@ -447,7 +437,7 @@ var toPrimitive$1 = function (input, pref) {
|
|
|
447
437
|
if (pref === undefined) pref = 'default';
|
|
448
438
|
result = call$2(exoticToPrim, input, pref);
|
|
449
439
|
if (!isObject$3(result) || isSymbol$1(result)) return result;
|
|
450
|
-
throw TypeError$
|
|
440
|
+
throw $TypeError$2("Can't convert object to primitive value");
|
|
451
441
|
}
|
|
452
442
|
if (pref === undefined) pref = 'number';
|
|
453
443
|
return ordinaryToPrimitive(input, pref);
|
|
@@ -463,10 +453,10 @@ var toPropertyKey$2 = function (argument) {
|
|
|
463
453
|
return isSymbol(key) ? key : key + '';
|
|
464
454
|
};
|
|
465
455
|
|
|
466
|
-
var global$
|
|
456
|
+
var global$6 = global$c;
|
|
467
457
|
var isObject$2 = isObject$5;
|
|
468
458
|
|
|
469
|
-
var document = global$
|
|
459
|
+
var document = global$6.document;
|
|
470
460
|
// typeof document.createElement is 'object' in old IE
|
|
471
461
|
var EXISTS$1 = isObject$2(document) && isObject$2(document.createElement);
|
|
472
462
|
|
|
@@ -474,19 +464,19 @@ var documentCreateElement = function (it) {
|
|
|
474
464
|
return EXISTS$1 ? document.createElement(it) : {};
|
|
475
465
|
};
|
|
476
466
|
|
|
477
|
-
var DESCRIPTORS$
|
|
478
|
-
var fails$
|
|
467
|
+
var DESCRIPTORS$7 = descriptors;
|
|
468
|
+
var fails$7 = fails$c;
|
|
479
469
|
var createElement = documentCreateElement;
|
|
480
470
|
|
|
481
471
|
// Thanks to IE8 for its funny defineProperty
|
|
482
|
-
var ie8DomDefine = !DESCRIPTORS$
|
|
472
|
+
var ie8DomDefine = !DESCRIPTORS$7 && !fails$7(function () {
|
|
483
473
|
// eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
|
|
484
474
|
return Object.defineProperty(createElement('div'), 'a', {
|
|
485
475
|
get: function () { return 7; }
|
|
486
476
|
}).a != 7;
|
|
487
477
|
});
|
|
488
478
|
|
|
489
|
-
var DESCRIPTORS$
|
|
479
|
+
var DESCRIPTORS$6 = descriptors;
|
|
490
480
|
var call$1 = functionCall;
|
|
491
481
|
var propertyIsEnumerableModule$1 = objectPropertyIsEnumerable;
|
|
492
482
|
var createPropertyDescriptor$1 = createPropertyDescriptor$2;
|
|
@@ -500,7 +490,7 @@ var $getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
|
|
|
500
490
|
|
|
501
491
|
// `Object.getOwnPropertyDescriptor` method
|
|
502
492
|
// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
|
|
503
|
-
objectGetOwnPropertyDescriptor.f = DESCRIPTORS$
|
|
493
|
+
objectGetOwnPropertyDescriptor.f = DESCRIPTORS$6 ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
|
|
504
494
|
O = toIndexedObject$2(O);
|
|
505
495
|
P = toPropertyKey$1(P);
|
|
506
496
|
if (IE8_DOM_DEFINE$1) try {
|
|
@@ -511,12 +501,12 @@ objectGetOwnPropertyDescriptor.f = DESCRIPTORS$5 ? $getOwnPropertyDescriptor$1 :
|
|
|
511
501
|
|
|
512
502
|
var objectDefineProperty = {};
|
|
513
503
|
|
|
514
|
-
var DESCRIPTORS$
|
|
515
|
-
var fails$
|
|
504
|
+
var DESCRIPTORS$5 = descriptors;
|
|
505
|
+
var fails$6 = fails$c;
|
|
516
506
|
|
|
517
507
|
// V8 ~ Chrome 36-
|
|
518
508
|
// https://bugs.chromium.org/p/v8/issues/detail?id=3334
|
|
519
|
-
var v8PrototypeDefineBug = DESCRIPTORS$
|
|
509
|
+
var v8PrototypeDefineBug = DESCRIPTORS$5 && fails$6(function () {
|
|
520
510
|
// eslint-disable-next-line es-x/no-object-defineproperty -- required for testing
|
|
521
511
|
return Object.defineProperty(function () { /* empty */ }, 'prototype', {
|
|
522
512
|
value: 42,
|
|
@@ -524,26 +514,24 @@ var v8PrototypeDefineBug = DESCRIPTORS$4 && fails$5(function () {
|
|
|
524
514
|
}).prototype != 42;
|
|
525
515
|
});
|
|
526
516
|
|
|
527
|
-
var global$a = global$p;
|
|
528
517
|
var isObject$1 = isObject$5;
|
|
529
518
|
|
|
530
|
-
var String$
|
|
531
|
-
var TypeError$
|
|
519
|
+
var $String$1 = String;
|
|
520
|
+
var $TypeError$1 = TypeError;
|
|
532
521
|
|
|
533
522
|
// `Assert: Type(argument) is Object`
|
|
534
523
|
var anObject$2 = function (argument) {
|
|
535
524
|
if (isObject$1(argument)) return argument;
|
|
536
|
-
throw TypeError$
|
|
525
|
+
throw $TypeError$1($String$1(argument) + ' is not an object');
|
|
537
526
|
};
|
|
538
527
|
|
|
539
|
-
var
|
|
540
|
-
var DESCRIPTORS$3 = descriptors;
|
|
528
|
+
var DESCRIPTORS$4 = descriptors;
|
|
541
529
|
var IE8_DOM_DEFINE = ie8DomDefine;
|
|
542
530
|
var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
|
|
543
531
|
var anObject$1 = anObject$2;
|
|
544
532
|
var toPropertyKey = toPropertyKey$2;
|
|
545
533
|
|
|
546
|
-
var TypeError
|
|
534
|
+
var $TypeError = TypeError;
|
|
547
535
|
// eslint-disable-next-line es-x/no-object-defineproperty -- safe
|
|
548
536
|
var $defineProperty = Object.defineProperty;
|
|
549
537
|
// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
|
|
@@ -554,7 +542,7 @@ var WRITABLE = 'writable';
|
|
|
554
542
|
|
|
555
543
|
// `Object.defineProperty` method
|
|
556
544
|
// https://tc39.es/ecma262/#sec-object.defineproperty
|
|
557
|
-
objectDefineProperty.f = DESCRIPTORS$
|
|
545
|
+
objectDefineProperty.f = DESCRIPTORS$4 ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {
|
|
558
546
|
anObject$1(O);
|
|
559
547
|
P = toPropertyKey(P);
|
|
560
548
|
anObject$1(Attributes);
|
|
@@ -576,32 +564,50 @@ objectDefineProperty.f = DESCRIPTORS$3 ? V8_PROTOTYPE_DEFINE_BUG ? function defi
|
|
|
576
564
|
if (IE8_DOM_DEFINE) try {
|
|
577
565
|
return $defineProperty(O, P, Attributes);
|
|
578
566
|
} catch (error) { /* empty */ }
|
|
579
|
-
if ('get' in Attributes || 'set' in Attributes) throw TypeError
|
|
567
|
+
if ('get' in Attributes || 'set' in Attributes) throw $TypeError('Accessors not supported');
|
|
580
568
|
if ('value' in Attributes) O[P] = Attributes.value;
|
|
581
569
|
return O;
|
|
582
570
|
};
|
|
583
571
|
|
|
584
|
-
var DESCRIPTORS$
|
|
585
|
-
var definePropertyModule$
|
|
572
|
+
var DESCRIPTORS$3 = descriptors;
|
|
573
|
+
var definePropertyModule$2 = objectDefineProperty;
|
|
586
574
|
var createPropertyDescriptor = createPropertyDescriptor$2;
|
|
587
575
|
|
|
588
|
-
var createNonEnumerableProperty$
|
|
589
|
-
return definePropertyModule$
|
|
576
|
+
var createNonEnumerableProperty$2 = DESCRIPTORS$3 ? function (object, key, value) {
|
|
577
|
+
return definePropertyModule$2.f(object, key, createPropertyDescriptor(1, value));
|
|
590
578
|
} : function (object, key, value) {
|
|
591
579
|
object[key] = value;
|
|
592
580
|
return object;
|
|
593
581
|
};
|
|
594
582
|
|
|
595
|
-
var
|
|
583
|
+
var makeBuiltIn$2 = {exports: {}};
|
|
584
|
+
|
|
585
|
+
var DESCRIPTORS$2 = descriptors;
|
|
586
|
+
var hasOwn$4 = hasOwnProperty_1;
|
|
587
|
+
|
|
588
|
+
var FunctionPrototype = Function.prototype;
|
|
589
|
+
// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
|
|
590
|
+
var getDescriptor = DESCRIPTORS$2 && Object.getOwnPropertyDescriptor;
|
|
591
|
+
|
|
592
|
+
var EXISTS = hasOwn$4(FunctionPrototype, 'name');
|
|
593
|
+
// additional protection from minified / mangled / dropped function names
|
|
594
|
+
var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
|
|
595
|
+
var CONFIGURABLE = EXISTS && (!DESCRIPTORS$2 || (DESCRIPTORS$2 && getDescriptor(FunctionPrototype, 'name').configurable));
|
|
596
|
+
|
|
597
|
+
var functionName = {
|
|
598
|
+
EXISTS: EXISTS,
|
|
599
|
+
PROPER: PROPER,
|
|
600
|
+
CONFIGURABLE: CONFIGURABLE
|
|
601
|
+
};
|
|
596
602
|
|
|
597
603
|
var uncurryThis$7 = functionUncurryThis;
|
|
598
|
-
var isCallable$
|
|
604
|
+
var isCallable$5 = isCallable$b;
|
|
599
605
|
var store$1 = sharedStore;
|
|
600
606
|
|
|
601
607
|
var functionToString = uncurryThis$7(Function.toString);
|
|
602
608
|
|
|
603
609
|
// this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
|
|
604
|
-
if (!isCallable$
|
|
610
|
+
if (!isCallable$5(store$1.inspectSource)) {
|
|
605
611
|
store$1.inspectSource = function (it) {
|
|
606
612
|
return functionToString(it);
|
|
607
613
|
};
|
|
@@ -609,13 +615,13 @@ if (!isCallable$4(store$1.inspectSource)) {
|
|
|
609
615
|
|
|
610
616
|
var inspectSource$2 = store$1.inspectSource;
|
|
611
617
|
|
|
612
|
-
var global$
|
|
613
|
-
var isCallable$
|
|
618
|
+
var global$5 = global$c;
|
|
619
|
+
var isCallable$4 = isCallable$b;
|
|
614
620
|
var inspectSource$1 = inspectSource$2;
|
|
615
621
|
|
|
616
|
-
var WeakMap$1 = global$
|
|
622
|
+
var WeakMap$1 = global$5.WeakMap;
|
|
617
623
|
|
|
618
|
-
var nativeWeakMap = isCallable$
|
|
624
|
+
var nativeWeakMap = isCallable$4(WeakMap$1) && /native code/.test(inspectSource$1(WeakMap$1));
|
|
619
625
|
|
|
620
626
|
var shared$1 = shared$3.exports;
|
|
621
627
|
var uid = uid$2;
|
|
@@ -629,18 +635,18 @@ var sharedKey$1 = function (key) {
|
|
|
629
635
|
var hiddenKeys$3 = {};
|
|
630
636
|
|
|
631
637
|
var NATIVE_WEAK_MAP = nativeWeakMap;
|
|
632
|
-
var global$
|
|
638
|
+
var global$4 = global$c;
|
|
633
639
|
var uncurryThis$6 = functionUncurryThis;
|
|
634
640
|
var isObject = isObject$5;
|
|
635
|
-
var createNonEnumerableProperty$
|
|
636
|
-
var hasOwn$
|
|
641
|
+
var createNonEnumerableProperty$1 = createNonEnumerableProperty$2;
|
|
642
|
+
var hasOwn$3 = hasOwnProperty_1;
|
|
637
643
|
var shared = sharedStore;
|
|
638
644
|
var sharedKey = sharedKey$1;
|
|
639
645
|
var hiddenKeys$2 = hiddenKeys$3;
|
|
640
646
|
|
|
641
647
|
var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
|
|
642
|
-
var TypeError$1 = global$
|
|
643
|
-
var WeakMap = global$
|
|
648
|
+
var TypeError$1 = global$4.TypeError;
|
|
649
|
+
var WeakMap = global$4.WeakMap;
|
|
644
650
|
var set, get, has;
|
|
645
651
|
|
|
646
652
|
var enforce = function (it) {
|
|
@@ -677,16 +683,16 @@ if (NATIVE_WEAK_MAP || shared.state) {
|
|
|
677
683
|
var STATE = sharedKey('state');
|
|
678
684
|
hiddenKeys$2[STATE] = true;
|
|
679
685
|
set = function (it, metadata) {
|
|
680
|
-
if (hasOwn$
|
|
686
|
+
if (hasOwn$3(it, STATE)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
|
|
681
687
|
metadata.facade = it;
|
|
682
|
-
createNonEnumerableProperty$
|
|
688
|
+
createNonEnumerableProperty$1(it, STATE, metadata);
|
|
683
689
|
return metadata;
|
|
684
690
|
};
|
|
685
691
|
get = function (it) {
|
|
686
|
-
return hasOwn$
|
|
692
|
+
return hasOwn$3(it, STATE) ? it[STATE] : {};
|
|
687
693
|
};
|
|
688
694
|
has = function (it) {
|
|
689
|
-
return hasOwn$
|
|
695
|
+
return hasOwn$3(it, STATE);
|
|
690
696
|
};
|
|
691
697
|
}
|
|
692
698
|
|
|
@@ -698,82 +704,105 @@ var internalState = {
|
|
|
698
704
|
getterFor: getterFor
|
|
699
705
|
};
|
|
700
706
|
|
|
701
|
-
var
|
|
702
|
-
var
|
|
703
|
-
|
|
704
|
-
var FunctionPrototype = Function.prototype;
|
|
705
|
-
// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
|
|
706
|
-
var getDescriptor = DESCRIPTORS$1 && Object.getOwnPropertyDescriptor;
|
|
707
|
-
|
|
708
|
-
var EXISTS = hasOwn$3(FunctionPrototype, 'name');
|
|
709
|
-
// additional protection from minified / mangled / dropped function names
|
|
710
|
-
var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
|
|
711
|
-
var CONFIGURABLE = EXISTS && (!DESCRIPTORS$1 || (DESCRIPTORS$1 && getDescriptor(FunctionPrototype, 'name').configurable));
|
|
712
|
-
|
|
713
|
-
var functionName = {
|
|
714
|
-
EXISTS: EXISTS,
|
|
715
|
-
PROPER: PROPER,
|
|
716
|
-
CONFIGURABLE: CONFIGURABLE
|
|
717
|
-
};
|
|
718
|
-
|
|
719
|
-
var global$6 = global$p;
|
|
720
|
-
var isCallable$2 = isCallable$a;
|
|
707
|
+
var fails$5 = fails$c;
|
|
708
|
+
var isCallable$3 = isCallable$b;
|
|
721
709
|
var hasOwn$2 = hasOwnProperty_1;
|
|
722
|
-
var
|
|
723
|
-
var
|
|
710
|
+
var DESCRIPTORS$1 = descriptors;
|
|
711
|
+
var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
|
|
724
712
|
var inspectSource = inspectSource$2;
|
|
725
713
|
var InternalStateModule = internalState;
|
|
726
|
-
var CONFIGURABLE_FUNCTION_NAME = functionName.CONFIGURABLE;
|
|
727
714
|
|
|
728
|
-
var getInternalState = InternalStateModule.get;
|
|
729
715
|
var enforceInternalState = InternalStateModule.enforce;
|
|
716
|
+
var getInternalState = InternalStateModule.get;
|
|
717
|
+
// eslint-disable-next-line es-x/no-object-defineproperty -- safe
|
|
718
|
+
var defineProperty$1 = Object.defineProperty;
|
|
719
|
+
|
|
720
|
+
var CONFIGURABLE_LENGTH = DESCRIPTORS$1 && !fails$5(function () {
|
|
721
|
+
return defineProperty$1(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
|
|
722
|
+
});
|
|
723
|
+
|
|
730
724
|
var TEMPLATE = String(String).split('String');
|
|
731
725
|
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
var noTargetGet = options ? !!options.noTargetGet : false;
|
|
736
|
-
var name = options && options.name !== undefined ? options.name : key;
|
|
737
|
-
var state;
|
|
738
|
-
if (isCallable$2(value)) {
|
|
739
|
-
if (String(name).slice(0, 7) === 'Symbol(') {
|
|
740
|
-
name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
|
|
741
|
-
}
|
|
742
|
-
if (!hasOwn$2(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
|
|
743
|
-
createNonEnumerableProperty$1(value, 'name', name);
|
|
744
|
-
}
|
|
745
|
-
state = enforceInternalState(value);
|
|
746
|
-
if (!state.source) {
|
|
747
|
-
state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
|
|
748
|
-
}
|
|
726
|
+
var makeBuiltIn$1 = makeBuiltIn$2.exports = function (value, name, options) {
|
|
727
|
+
if (String(name).slice(0, 7) === 'Symbol(') {
|
|
728
|
+
name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
|
|
749
729
|
}
|
|
750
|
-
if (
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
730
|
+
if (options && options.getter) name = 'get ' + name;
|
|
731
|
+
if (options && options.setter) name = 'set ' + name;
|
|
732
|
+
if (!hasOwn$2(value, 'name') || (CONFIGURABLE_FUNCTION_NAME && value.name !== name)) {
|
|
733
|
+
if (DESCRIPTORS$1) defineProperty$1(value, 'name', { value: name, configurable: true });
|
|
734
|
+
else value.name = name;
|
|
735
|
+
}
|
|
736
|
+
if (CONFIGURABLE_LENGTH && options && hasOwn$2(options, 'arity') && value.length !== options.arity) {
|
|
737
|
+
defineProperty$1(value, 'length', { value: options.arity });
|
|
758
738
|
}
|
|
759
|
-
|
|
760
|
-
|
|
739
|
+
try {
|
|
740
|
+
if (options && hasOwn$2(options, 'constructor') && options.constructor) {
|
|
741
|
+
if (DESCRIPTORS$1) defineProperty$1(value, 'prototype', { writable: false });
|
|
742
|
+
// in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
|
|
743
|
+
} else if (value.prototype) value.prototype = undefined;
|
|
744
|
+
} catch (error) { /* empty */ }
|
|
745
|
+
var state = enforceInternalState(value);
|
|
746
|
+
if (!hasOwn$2(state, 'source')) {
|
|
747
|
+
state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
|
|
748
|
+
} return value;
|
|
749
|
+
};
|
|
750
|
+
|
|
761
751
|
// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
752
|
+
// eslint-disable-next-line no-extend-native -- required
|
|
753
|
+
Function.prototype.toString = makeBuiltIn$1(function toString() {
|
|
754
|
+
return isCallable$3(this) && getInternalState(this).source || inspectSource(this);
|
|
755
|
+
}, 'toString');
|
|
756
|
+
|
|
757
|
+
var isCallable$2 = isCallable$b;
|
|
758
|
+
var definePropertyModule$1 = objectDefineProperty;
|
|
759
|
+
var makeBuiltIn = makeBuiltIn$2.exports;
|
|
760
|
+
var defineGlobalProperty$1 = defineGlobalProperty$3;
|
|
761
|
+
|
|
762
|
+
var defineBuiltIn$1 = function (O, key, value, options) {
|
|
763
|
+
if (!options) options = {};
|
|
764
|
+
var simple = options.enumerable;
|
|
765
|
+
var name = options.name !== undefined ? options.name : key;
|
|
766
|
+
if (isCallable$2(value)) makeBuiltIn(value, name, options);
|
|
767
|
+
if (options.global) {
|
|
768
|
+
if (simple) O[key] = value;
|
|
769
|
+
else defineGlobalProperty$1(key, value);
|
|
770
|
+
} else {
|
|
771
|
+
try {
|
|
772
|
+
if (!options.unsafe) delete O[key];
|
|
773
|
+
else if (O[key]) simple = true;
|
|
774
|
+
} catch (error) { /* empty */ }
|
|
775
|
+
if (simple) O[key] = value;
|
|
776
|
+
else definePropertyModule$1.f(O, key, {
|
|
777
|
+
value: value,
|
|
778
|
+
enumerable: false,
|
|
779
|
+
configurable: !options.nonConfigurable,
|
|
780
|
+
writable: !options.nonWritable
|
|
781
|
+
});
|
|
782
|
+
} return O;
|
|
783
|
+
};
|
|
765
784
|
|
|
766
785
|
var objectGetOwnPropertyNames = {};
|
|
767
786
|
|
|
768
787
|
var ceil = Math.ceil;
|
|
769
788
|
var floor = Math.floor;
|
|
770
789
|
|
|
790
|
+
// `Math.trunc` method
|
|
791
|
+
// https://tc39.es/ecma262/#sec-math.trunc
|
|
792
|
+
// eslint-disable-next-line es-x/no-math-trunc -- safe
|
|
793
|
+
var mathTrunc = Math.trunc || function trunc(x) {
|
|
794
|
+
var n = +x;
|
|
795
|
+
return (n > 0 ? floor : ceil)(n);
|
|
796
|
+
};
|
|
797
|
+
|
|
798
|
+
var trunc = mathTrunc;
|
|
799
|
+
|
|
771
800
|
// `ToIntegerOrInfinity` abstract operation
|
|
772
801
|
// https://tc39.es/ecma262/#sec-tointegerorinfinity
|
|
773
802
|
var toIntegerOrInfinity$2 = function (argument) {
|
|
774
803
|
var number = +argument;
|
|
775
|
-
// eslint-disable-next-line no-self-compare --
|
|
776
|
-
return number !== number || number === 0 ? 0 : (number
|
|
804
|
+
// eslint-disable-next-line no-self-compare -- NaN check
|
|
805
|
+
return number !== number || number === 0 ? 0 : trunc(number);
|
|
777
806
|
};
|
|
778
807
|
|
|
779
808
|
var toIntegerOrInfinity$1 = toIntegerOrInfinity$2;
|
|
@@ -921,8 +950,8 @@ var copyConstructorProperties$1 = function (target, source, exceptions) {
|
|
|
921
950
|
}
|
|
922
951
|
};
|
|
923
952
|
|
|
924
|
-
var fails$4 = fails$
|
|
925
|
-
var isCallable$1 = isCallable$
|
|
953
|
+
var fails$4 = fails$c;
|
|
954
|
+
var isCallable$1 = isCallable$b;
|
|
926
955
|
|
|
927
956
|
var replacement = /#|\.prototype\./;
|
|
928
957
|
|
|
@@ -944,28 +973,28 @@ var POLYFILL = isForced$1.POLYFILL = 'P';
|
|
|
944
973
|
|
|
945
974
|
var isForced_1 = isForced$1;
|
|
946
975
|
|
|
947
|
-
var global$
|
|
976
|
+
var global$3 = global$c;
|
|
948
977
|
var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
|
|
949
|
-
var createNonEnumerableProperty = createNonEnumerableProperty$
|
|
950
|
-
var
|
|
951
|
-
var
|
|
978
|
+
var createNonEnumerableProperty = createNonEnumerableProperty$2;
|
|
979
|
+
var defineBuiltIn = defineBuiltIn$1;
|
|
980
|
+
var defineGlobalProperty = defineGlobalProperty$3;
|
|
952
981
|
var copyConstructorProperties = copyConstructorProperties$1;
|
|
953
982
|
var isForced = isForced_1;
|
|
954
983
|
|
|
955
984
|
/*
|
|
956
|
-
options.target
|
|
957
|
-
options.global
|
|
958
|
-
options.stat
|
|
959
|
-
options.proto
|
|
960
|
-
options.real
|
|
961
|
-
options.forced
|
|
962
|
-
options.bind
|
|
963
|
-
options.wrap
|
|
964
|
-
options.unsafe
|
|
965
|
-
options.sham
|
|
966
|
-
options.enumerable
|
|
967
|
-
options.
|
|
968
|
-
options.name
|
|
985
|
+
options.target - name of the target object
|
|
986
|
+
options.global - target is the global object
|
|
987
|
+
options.stat - export as static methods of target
|
|
988
|
+
options.proto - export as prototype methods of target
|
|
989
|
+
options.real - real prototype method for the `pure` version
|
|
990
|
+
options.forced - export even if the native feature is available
|
|
991
|
+
options.bind - bind methods to the target, required for the `pure` version
|
|
992
|
+
options.wrap - wrap constructors to preventing global pollution, required for the `pure` version
|
|
993
|
+
options.unsafe - use the simple assignment of property instead of delete + defineProperty
|
|
994
|
+
options.sham - add a flag to not completely full polyfills
|
|
995
|
+
options.enumerable - export as enumerable property
|
|
996
|
+
options.dontCallGetSet - prevent calling a getter on target
|
|
997
|
+
options.name - the .name of the function if it does not match the key
|
|
969
998
|
*/
|
|
970
999
|
var _export = function (options, source) {
|
|
971
1000
|
var TARGET = options.target;
|
|
@@ -973,15 +1002,15 @@ var _export = function (options, source) {
|
|
|
973
1002
|
var STATIC = options.stat;
|
|
974
1003
|
var FORCED, target, key, targetProperty, sourceProperty, descriptor;
|
|
975
1004
|
if (GLOBAL) {
|
|
976
|
-
target = global$
|
|
1005
|
+
target = global$3;
|
|
977
1006
|
} else if (STATIC) {
|
|
978
|
-
target = global$
|
|
1007
|
+
target = global$3[TARGET] || defineGlobalProperty(TARGET, {});
|
|
979
1008
|
} else {
|
|
980
|
-
target = (global$
|
|
1009
|
+
target = (global$3[TARGET] || {}).prototype;
|
|
981
1010
|
}
|
|
982
1011
|
if (target) for (key in source) {
|
|
983
1012
|
sourceProperty = source[key];
|
|
984
|
-
if (options.
|
|
1013
|
+
if (options.dontCallGetSet) {
|
|
985
1014
|
descriptor = getOwnPropertyDescriptor(target, key);
|
|
986
1015
|
targetProperty = descriptor && descriptor.value;
|
|
987
1016
|
} else targetProperty = target[key];
|
|
@@ -995,8 +1024,7 @@ var _export = function (options, source) {
|
|
|
995
1024
|
if (options.sham || (targetProperty && targetProperty.sham)) {
|
|
996
1025
|
createNonEnumerableProperty(sourceProperty, 'sham', true);
|
|
997
1026
|
}
|
|
998
|
-
|
|
999
|
-
redefine(target, key, sourceProperty, options);
|
|
1027
|
+
defineBuiltIn(target, key, sourceProperty, options);
|
|
1000
1028
|
}
|
|
1001
1029
|
};
|
|
1002
1030
|
|
|
@@ -1009,14 +1037,13 @@ test[TO_STRING_TAG$1] = 'z';
|
|
|
1009
1037
|
|
|
1010
1038
|
var toStringTagSupport = String(test) === '[object z]';
|
|
1011
1039
|
|
|
1012
|
-
var global$4 = global$p;
|
|
1013
1040
|
var TO_STRING_TAG_SUPPORT = toStringTagSupport;
|
|
1014
|
-
var isCallable = isCallable$
|
|
1041
|
+
var isCallable = isCallable$b;
|
|
1015
1042
|
var classofRaw = classofRaw$1;
|
|
1016
1043
|
var wellKnownSymbol = wellKnownSymbol$3;
|
|
1017
1044
|
|
|
1018
1045
|
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
|
|
1019
|
-
var Object
|
|
1046
|
+
var $Object = Object;
|
|
1020
1047
|
|
|
1021
1048
|
// ES3 wrong here
|
|
1022
1049
|
var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
|
|
@@ -1033,21 +1060,20 @@ var classof$1 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
|
|
|
1033
1060
|
var O, tag, result;
|
|
1034
1061
|
return it === undefined ? 'Undefined' : it === null ? 'Null'
|
|
1035
1062
|
// @@toStringTag case
|
|
1036
|
-
: typeof (tag = tryGet(O = Object
|
|
1063
|
+
: typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
|
|
1037
1064
|
// builtinTag case
|
|
1038
1065
|
: CORRECT_ARGUMENTS ? classofRaw(O)
|
|
1039
1066
|
// ES3 arguments fallback
|
|
1040
1067
|
: (result = classofRaw(O)) == 'Object' && isCallable(O.callee) ? 'Arguments' : result;
|
|
1041
1068
|
};
|
|
1042
1069
|
|
|
1043
|
-
var global$3 = global$p;
|
|
1044
1070
|
var classof = classof$1;
|
|
1045
1071
|
|
|
1046
|
-
var String
|
|
1072
|
+
var $String = String;
|
|
1047
1073
|
|
|
1048
1074
|
var toString$3 = function (argument) {
|
|
1049
1075
|
if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
|
|
1050
|
-
return String
|
|
1076
|
+
return $String(argument);
|
|
1051
1077
|
};
|
|
1052
1078
|
|
|
1053
1079
|
// a string of all valid unicode whitespaces
|
|
@@ -1086,8 +1112,8 @@ var stringTrim = {
|
|
|
1086
1112
|
trim: createMethod(3)
|
|
1087
1113
|
};
|
|
1088
1114
|
|
|
1089
|
-
var global$2 = global$
|
|
1090
|
-
var fails$3 = fails$
|
|
1115
|
+
var global$2 = global$c;
|
|
1116
|
+
var fails$3 = fails$c;
|
|
1091
1117
|
var uncurryThis$2 = functionUncurryThis;
|
|
1092
1118
|
var toString$1 = toString$3;
|
|
1093
1119
|
var trim$1 = stringTrim.trim;
|
|
@@ -1118,8 +1144,8 @@ $$3({ global: true, forced: parseInt != $parseInt }, {
|
|
|
1118
1144
|
parseInt: $parseInt
|
|
1119
1145
|
});
|
|
1120
1146
|
|
|
1121
|
-
var global$1 = global$
|
|
1122
|
-
var fails$2 = fails$
|
|
1147
|
+
var global$1 = global$c;
|
|
1148
|
+
var fails$2 = fails$c;
|
|
1123
1149
|
var uncurryThis$1 = functionUncurryThis;
|
|
1124
1150
|
var toString = toString$3;
|
|
1125
1151
|
var trim = stringTrim.trim;
|
|
@@ -1151,7 +1177,7 @@ $$2({ global: true, forced: parseFloat != $parseFloat }, {
|
|
|
1151
1177
|
});
|
|
1152
1178
|
|
|
1153
1179
|
var PROPER_FUNCTION_NAME = functionName.PROPER;
|
|
1154
|
-
var fails$1 = fails$
|
|
1180
|
+
var fails$1 = fails$c;
|
|
1155
1181
|
var whitespaces = whitespaces$4;
|
|
1156
1182
|
|
|
1157
1183
|
var non = '\u200B\u0085\u180E';
|
|
@@ -1323,7 +1349,7 @@ var objectKeys$1 = Object.keys || function keys(O) {
|
|
|
1323
1349
|
var DESCRIPTORS = descriptors;
|
|
1324
1350
|
var uncurryThis = functionUncurryThis;
|
|
1325
1351
|
var call = functionCall;
|
|
1326
|
-
var fails = fails$
|
|
1352
|
+
var fails = fails$c;
|
|
1327
1353
|
var objectKeys = objectKeys$1;
|
|
1328
1354
|
var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
|
|
1329
1355
|
var propertyIsEnumerableModule = objectPropertyIsEnumerable;
|
|
@@ -1383,7 +1409,7 @@ var assign = objectAssign;
|
|
|
1383
1409
|
// `Object.assign` method
|
|
1384
1410
|
// https://tc39.es/ecma262/#sec-object.assign
|
|
1385
1411
|
// eslint-disable-next-line es-x/no-object-assign -- required for testing
|
|
1386
|
-
$({ target: 'Object', stat: true, forced: Object.assign !== assign }, {
|
|
1412
|
+
$({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
|
|
1387
1413
|
assign: assign
|
|
1388
1414
|
});
|
|
1389
1415
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app-runtime-core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.55",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
"type": "module",
|
|
9
9
|
"types": "./index.d.ts",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@trackunit/iris-app-runtime-core-api": "0.0.
|
|
12
|
-
"@trackunit/react-core-contexts-api": "0.0.
|
|
11
|
+
"@trackunit/iris-app-runtime-core-api": "0.0.53",
|
|
12
|
+
"@trackunit/react-core-contexts-api": "0.0.51"
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {}
|
|
15
15
|
}
|