-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap.3d396e2ab73bcb976083.bundle.js
1860 lines (1581 loc) · 75.8 KB
/
bootstrap.3d396e2ab73bcb976083.bundle.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*!
*
* [Dojo](https://dojo.io/)
* Copyright [JS Foundation](https://js.foundation/) & contributors
* [New BSD license](https://github.com/dojo/meta/blob/master/LICENSE)
* All rights reserved
*
*/
var shimFeatures = {"no-bootstrap":true,"intersection-observer":false,"resize-observer":false,"web-animations":false,"build-fetch":false,"inert":false,"build-blocks":true};
if (window.DojoHasEnvironment && window.DojoHasEnvironment.staticFeatures) {
Object.keys(window.DojoHasEnvironment.staticFeatures).forEach(function (key) {
shimFeatures[key] = window.DojoHasEnvironment.staticFeatures[key];
});
}
window.DojoHasEnvironment = { staticFeatures: shimFeatures };(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
else if(typeof define === 'function' && define.amd)
define("lib_diff_test", [], factory);
else if(typeof exports === 'object')
exports["lib_diff_test"] = factory();
else
root["lib_diff_test"] = factory();
})(window, function() {
return /******/ (function(modules) { // webpackBootstrap
/******/ // install a JSONP callback for chunk loading
/******/ function webpackJsonpCallback(data) {
/******/ var chunkIds = data[0];
/******/ var moreModules = data[1];
/******/
/******/
/******/ // add "moreModules" to the modules object,
/******/ // then flag all "chunkIds" as loaded and fire callback
/******/ var moduleId, chunkId, i = 0, resolves = [];
/******/ for(;i < chunkIds.length; i++) {
/******/ chunkId = chunkIds[i];
/******/ if(installedChunks[chunkId]) {
/******/ resolves.push(installedChunks[chunkId][0]);
/******/ }
/******/ installedChunks[chunkId] = 0;
/******/ }
/******/ for(moduleId in moreModules) {
/******/ if(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {
/******/ modules[moduleId] = moreModules[moduleId];
/******/ }
/******/ }
/******/ if(parentJsonpFunction) parentJsonpFunction(data);
/******/
/******/ while(resolves.length) {
/******/ resolves.shift()();
/******/ }
/******/
/******/ };
/******/
/******/
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // object to store loaded CSS chunks
/******/ var installedCssChunks = {
/******/ "bootstrap": 0
/******/ }
/******/
/******/ // object to store loaded and loading chunks
/******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
/******/ // Promise = chunk loading, 0 = chunk loaded
/******/ var installedChunks = {
/******/ "bootstrap": 0
/******/ };
/******/
/******/
/******/
/******/ // script path function
/******/ function jsonpScriptSrc(chunkId) {
/******/ return __webpack_require__.p + "" + ({"main":"main","runtime/IntersectionObserver":"runtime/IntersectionObserver","runtime/ResizeObserver":"runtime/ResizeObserver","runtime/WebAnimations":"runtime/WebAnimations","runtime/blocks":"runtime/blocks","runtime/client":"runtime/client","runtime/fetch":"runtime/fetch","runtime/inert":"runtime/inert","runtime/pointerEvents":"runtime/pointerEvents","src/widgets/About":"src/widgets/About","src/widgets/Home":"src/widgets/Home","src/widgets/Profile":"src/widgets/Profile"}[chunkId]||chunkId) + "." + {"main":"0190f77dd1132bad077f","runtime/IntersectionObserver":"da7abb34c80d286a84fd","runtime/ResizeObserver":"f7a4e9a525507e3dcfda","runtime/WebAnimations":"45133609ef1a3f33c388","runtime/blocks":"804806457a287ba259c2","runtime/client":"4a64a5773ae46894f582","runtime/fetch":"420452c0d7b0edca3e52","runtime/inert":"773f2db1476af40af9da","runtime/pointerEvents":"4a28a1b2d1c03460f140","src/widgets/About":"9a6d071ba34702a22080","src/widgets/Home":"a5daed1a7dad51704a4f","src/widgets/Profile":"291fd9705b3eb72b9e20"}[chunkId] + ".bundle.js"
/******/ }
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
/******/ return installedModules[moduleId].exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ i: moduleId,
/******/ l: false,
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ // Flag the module as loaded
/******/ module.l = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/ // This file contains only the entry chunk.
/******/ // The chunk loading function for additional chunks
/******/ __webpack_require__.e = function requireEnsure(chunkId) {
/******/ var promises = [];
/******/
/******/
/******/ // mini-css-extract-plugin CSS loading
/******/ var cssChunks = {"main":1,"src/widgets/About":1,"src/widgets/Home":1,"src/widgets/Profile":1};
/******/ if(installedCssChunks[chunkId]) promises.push(installedCssChunks[chunkId]);
/******/ else if(installedCssChunks[chunkId] !== 0 && cssChunks[chunkId]) {
/******/ promises.push(installedCssChunks[chunkId] = new Promise(function(resolve, reject) {
/******/ var href = "" + ({"main":"main","runtime/IntersectionObserver":"runtime/IntersectionObserver","runtime/ResizeObserver":"runtime/ResizeObserver","runtime/WebAnimations":"runtime/WebAnimations","runtime/blocks":"runtime/blocks","runtime/client":"runtime/client","runtime/fetch":"runtime/fetch","runtime/inert":"runtime/inert","runtime/pointerEvents":"runtime/pointerEvents","src/widgets/About":"src/widgets/About","src/widgets/Home":"src/widgets/Home","src/widgets/Profile":"src/widgets/Profile"}[chunkId]||chunkId) + "." + {"main":"52f3f7be10f55e806427","runtime/IntersectionObserver":"31d6cfe0d16ae931b73c","runtime/ResizeObserver":"31d6cfe0d16ae931b73c","runtime/WebAnimations":"31d6cfe0d16ae931b73c","runtime/blocks":"31d6cfe0d16ae931b73c","runtime/client":"31d6cfe0d16ae931b73c","runtime/fetch":"31d6cfe0d16ae931b73c","runtime/inert":"31d6cfe0d16ae931b73c","runtime/pointerEvents":"31d6cfe0d16ae931b73c","src/widgets/About":"df5672370d7a9d52edd5","src/widgets/Home":"5f90bb4b182476fa1212","src/widgets/Profile":"9779a740488aedf81ff1"}[chunkId] + ".bundle.css";
/******/ var fullhref = __webpack_require__.p + href;
/******/ var existingLinkTags = document.getElementsByTagName("link");
/******/ for(var i = 0; i < existingLinkTags.length; i++) {
/******/ var tag = existingLinkTags[i];
/******/ var dataHref = tag.getAttribute("data-href") || tag.getAttribute("href");
/******/ if(tag.rel === "stylesheet" && (dataHref === href || dataHref === fullhref)) return resolve();
/******/ }
/******/ var existingStyleTags = document.getElementsByTagName("style");
/******/ for(var i = 0; i < existingStyleTags.length; i++) {
/******/ var tag = existingStyleTags[i];
/******/ var dataHref = tag.getAttribute("data-href");
/******/ if(dataHref === href || dataHref === fullhref) return resolve();
/******/ }
/******/ var linkTag = document.createElement("link");
/******/ linkTag.rel = "stylesheet";
/******/ linkTag.type = "text/css";
/******/ linkTag.onload = resolve;
/******/ linkTag.onerror = function(event) {
/******/ var request = event && event.target && event.target.src || fullhref;
/******/ var err = new Error("Loading CSS chunk " + chunkId + " failed.\n(" + request + ")");
/******/ err.request = request;
/******/ reject(err);
/******/ };
/******/ linkTag.href = fullhref;
/******/ var head = document.getElementsByTagName("head")[0];
/******/ head.appendChild(linkTag);
/******/ }).then(function() {
/******/ installedCssChunks[chunkId] = 0;
/******/ }));
/******/ }
/******/
/******/ // JSONP chunk loading for javascript
/******/
/******/ var installedChunkData = installedChunks[chunkId];
/******/ if(installedChunkData !== 0) { // 0 means "already installed".
/******/
/******/ // a Promise means "currently loading".
/******/ if(installedChunkData) {
/******/ promises.push(installedChunkData[2]);
/******/ } else {
/******/ // setup Promise in chunk cache
/******/ var promise = new Promise(function(resolve, reject) {
/******/ installedChunkData = installedChunks[chunkId] = [resolve, reject];
/******/ });
/******/ promises.push(installedChunkData[2] = promise);
/******/
/******/ // start chunk loading
/******/ var head = document.getElementsByTagName('head')[0];
/******/ var script = document.createElement('script');
/******/ var onScriptComplete;
/******/
/******/ script.charset = 'utf-8';
/******/ script.timeout = 120;
/******/ if (__webpack_require__.nc) {
/******/ script.setAttribute("nonce", __webpack_require__.nc);
/******/ }
/******/ script.src = jsonpScriptSrc(chunkId);
/******/
/******/ onScriptComplete = function (event) {
/******/ // avoid mem leaks in IE.
/******/ script.onerror = script.onload = null;
/******/ clearTimeout(timeout);
/******/ var chunk = installedChunks[chunkId];
/******/ if(chunk !== 0) {
/******/ if(chunk) {
/******/ var errorType = event && (event.type === 'load' ? 'missing' : event.type);
/******/ var realSrc = event && event.target && event.target.src;
/******/ var error = new Error('Loading chunk ' + chunkId + ' failed.\n(' + errorType + ': ' + realSrc + ')');
/******/ error.type = errorType;
/******/ error.request = realSrc;
/******/ chunk[1](error);
/******/ }
/******/ installedChunks[chunkId] = undefined;
/******/ }
/******/ };
/******/ var timeout = setTimeout(function(){
/******/ onScriptComplete({ type: 'timeout', target: script });
/******/ }, 120000);
/******/ script.onerror = script.onload = onScriptComplete;
/******/ head.appendChild(script);
/******/ }
/******/ }
/******/ return Promise.all(promises);
/******/ };
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/
/******/ // define getter function for harmony exports
/******/ __webpack_require__.d = function(exports, name, getter) {
/******/ if(!__webpack_require__.o(exports, name)) {
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
/******/ }
/******/ };
/******/
/******/ // define __esModule on exports
/******/ __webpack_require__.r = function(exports) {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/
/******/ // create a fake namespace object
/******/ // mode & 1: value is a module id, require it
/******/ // mode & 2: merge all properties of value into the ns
/******/ // mode & 4: return value when already ns object
/******/ // mode & 8|1: behave like require
/******/ __webpack_require__.t = function(value, mode) {
/******/ if(mode & 1) value = __webpack_require__(value);
/******/ if(mode & 8) return value;
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
/******/ var ns = Object.create(null);
/******/ __webpack_require__.r(ns);
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
/******/ return ns;
/******/ };
/******/
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = function(module) {
/******/ var getter = module && module.__esModule ?
/******/ function getDefault() { return module['default']; } :
/******/ function getModuleExports() { return module; };
/******/ __webpack_require__.d(getter, 'a', getter);
/******/ return getter;
/******/ };
/******/
/******/ // Object.prototype.hasOwnProperty.call
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/
/******/ // on error function for async loading
/******/ __webpack_require__.oe = function(err) { console.error(err); throw err; };
/******/
/******/ var jsonpArray = window["dojoWebpackJsonpdiff_test"] = window["dojoWebpackJsonpdiff_test"] || [];
/******/ var oldJsonpFunction = jsonpArray.push.bind(jsonpArray);
/******/ jsonpArray.push = webpackJsonpCallback;
/******/ jsonpArray = jsonpArray.slice();
/******/ for(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);
/******/ var parentJsonpFunction = oldJsonpFunction;
/******/
/******/
/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = 0);
/******/ })
/************************************************************************/
/******/ ({
/***/ "./node_modules/@babel/runtime/helpers/arrayLikeToArray.js":
/*!*****************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/arrayLikeToArray.js ***!
\*****************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function _arrayLikeToArray(arr, len) {
if (len == null || len > arr.length) len = arr.length;
for (var i = 0, arr2 = new Array(len); i < len; i++) {
arr2[i] = arr[i];
}
return arr2;
}
module.exports = _arrayLikeToArray;
/***/ }),
/***/ "./node_modules/@babel/runtime/helpers/arrayWithoutHoles.js":
/*!******************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/arrayWithoutHoles.js ***!
\******************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
var arrayLikeToArray = __webpack_require__(/*! ./arrayLikeToArray */ "./node_modules/@babel/runtime/helpers/arrayLikeToArray.js");
function _arrayWithoutHoles(arr) {
if (Array.isArray(arr)) return arrayLikeToArray(arr);
}
module.exports = _arrayWithoutHoles;
/***/ }),
/***/ "./node_modules/@babel/runtime/helpers/classCallCheck.js":
/*!***************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/classCallCheck.js ***!
\***************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function _classCallCheck(instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function");
}
}
module.exports = _classCallCheck;
/***/ }),
/***/ "./node_modules/@babel/runtime/helpers/createClass.js":
/*!************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/createClass.js ***!
\************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function _defineProperties(target, props) {
for (var i = 0; i < props.length; i++) {
var descriptor = props[i];
descriptor.enumerable = descriptor.enumerable || false;
descriptor.configurable = true;
if ("value" in descriptor) descriptor.writable = true;
Object.defineProperty(target, descriptor.key, descriptor);
}
}
function _createClass(Constructor, protoProps, staticProps) {
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
if (staticProps) _defineProperties(Constructor, staticProps);
return Constructor;
}
module.exports = _createClass;
/***/ }),
/***/ "./node_modules/@babel/runtime/helpers/iterableToArray.js":
/*!****************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/iterableToArray.js ***!
\****************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function _iterableToArray(iter) {
if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter)) return Array.from(iter);
}
module.exports = _iterableToArray;
/***/ }),
/***/ "./node_modules/@babel/runtime/helpers/nonIterableSpread.js":
/*!******************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/nonIterableSpread.js ***!
\******************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function _nonIterableSpread() {
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
}
module.exports = _nonIterableSpread;
/***/ }),
/***/ "./node_modules/@babel/runtime/helpers/taggedTemplateLiteral.js":
/*!**********************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/taggedTemplateLiteral.js ***!
\**********************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function _taggedTemplateLiteral(strings, raw) {
if (!raw) {
raw = strings.slice(0);
}
return Object.freeze(Object.defineProperties(strings, {
raw: {
value: Object.freeze(raw)
}
}));
}
module.exports = _taggedTemplateLiteral;
/***/ }),
/***/ "./node_modules/@babel/runtime/helpers/toConsumableArray.js":
/*!******************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/toConsumableArray.js ***!
\******************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
var arrayWithoutHoles = __webpack_require__(/*! ./arrayWithoutHoles */ "./node_modules/@babel/runtime/helpers/arrayWithoutHoles.js");
var iterableToArray = __webpack_require__(/*! ./iterableToArray */ "./node_modules/@babel/runtime/helpers/iterableToArray.js");
var unsupportedIterableToArray = __webpack_require__(/*! ./unsupportedIterableToArray */ "./node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js");
var nonIterableSpread = __webpack_require__(/*! ./nonIterableSpread */ "./node_modules/@babel/runtime/helpers/nonIterableSpread.js");
function _toConsumableArray(arr) {
return arrayWithoutHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableSpread();
}
module.exports = _toConsumableArray;
/***/ }),
/***/ "./node_modules/@babel/runtime/helpers/typeof.js":
/*!*******************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/typeof.js ***!
\*******************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function _typeof(obj) {
"@babel/helpers - typeof";
if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
module.exports = _typeof = function _typeof(obj) {
return typeof obj;
};
} else {
module.exports = _typeof = function _typeof(obj) {
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
};
}
return _typeof(obj);
}
module.exports = _typeof;
/***/ }),
/***/ "./node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js":
/*!***************************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js ***!
\***************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
var arrayLikeToArray = __webpack_require__(/*! ./arrayLikeToArray */ "./node_modules/@babel/runtime/helpers/arrayLikeToArray.js");
function _unsupportedIterableToArray(o, minLen) {
if (!o) return;
if (typeof o === "string") return arrayLikeToArray(o, minLen);
var n = Object.prototype.toString.call(o).slice(8, -1);
if (n === "Object" && o.constructor) n = o.constructor.name;
if (n === "Map" || n === "Set") return Array.from(o);
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return arrayLikeToArray(o, minLen);
}
module.exports = _unsupportedIterableToArray;
/***/ }),
/***/ "./node_modules/@dojo/framework/core/has.mjs":
/*!***************************************************!*\
!*** ./node_modules/@dojo/framework/core/has.mjs ***!
\***************************************************/
/*! exports provided: testCache, testFunctions, normalize, exists, add, default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "testCache", function() { return testCache; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "testFunctions", function() { return testFunctions; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "normalize", function() { return normalize; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "exists", function() { return exists; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "add", function() { return add; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return has; });
/* harmony import */ var _babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/taggedTemplateLiteral */ "./node_modules/@babel/runtime/helpers/taggedTemplateLiteral.js");
/* harmony import */ var _babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0__);
/* harmony import */ var _babel_runtime_helpers_toConsumableArray__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/toConsumableArray */ "./node_modules/@babel/runtime/helpers/toConsumableArray.js");
/* harmony import */ var _babel_runtime_helpers_toConsumableArray__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_toConsumableArray__WEBPACK_IMPORTED_MODULE_1__);
/* harmony import */ var _babel_runtime_helpers_typeof__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @babel/runtime/helpers/typeof */ "./node_modules/@babel/runtime/helpers/typeof.js");
/* harmony import */ var _babel_runtime_helpers_typeof__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_typeof__WEBPACK_IMPORTED_MODULE_2__);
/* harmony import */ var _shim_global__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../shim/global */ "./node_modules/@dojo/framework/shim/global.mjs");
function _templateObject() {
var data = _babel_runtime_helpers_taggedTemplateLiteral__WEBPACK_IMPORTED_MODULE_0___default()(["a\n", ""], ["a\\n", ""]);
_templateObject = function _templateObject() {
return data;
};
return data;
}
/**
* A cache of results of feature tests
*/
var testCache = {};
/**
* A cache of the un-resolved feature tests
*/
var testFunctions = {};
/* Grab the staticFeatures if there are available */
var _ref = _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].DojoHasEnvironment || {},
staticFeatures = _ref.staticFeatures;
/* Cleaning up the DojoHasEnviornment */
if ('DojoHasEnvironment' in _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"]) {
delete _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].DojoHasEnvironment;
}
/**
* Custom type guard to narrow the `staticFeatures` to either a map or a function that
* returns a map.
*
* @param value The value to guard for
*/
function isStaticFeatureFunction(value) {
return typeof value === 'function';
}
/**
* The cache of asserted features that were available in the global scope when the
* module loaded
*/
var staticCache = staticFeatures ? isStaticFeatureFunction(staticFeatures) ? staticFeatures.apply(_shim_global__WEBPACK_IMPORTED_MODULE_3__["default"]) : staticFeatures : {};
/* Providing an empty cache, if none was in the environment
/**
* AMD plugin function.
*
* Resolves resourceId into a module id based on possibly-nested tenary expression that branches on has feature test
* value(s).
*
* @param resourceId The id of the module
* @param normalize Resolves a relative module id into an absolute module id
*/
function normalize(resourceId, normalize) {
var tokens = resourceId.match(/[\?:]|[^:\?]*/g) || [];
var i = 0;
function get(skip) {
var term = tokens[i++];
if (term === ':') {
// empty string module name, resolves to null
return null;
} else {
// postfixed with a ? means it is a feature to branch on, the term is the name of the feature
if (tokens[i++] === '?') {
if (!skip && has(term)) {
// matched the feature, get the first value from the options
return get();
} else {
// did not match, get the second value, passing over the first
get(true);
return get(skip);
}
} // a module
return term;
}
}
var id = get();
return id && normalize(id);
}
/**
* Check if a feature has already been registered
*
* @param feature the name of the feature
*/
function exists(feature) {
var normalizedFeature = feature.toLowerCase();
return Boolean(normalizedFeature in staticCache || normalizedFeature in testCache || testFunctions[normalizedFeature]);
}
/**
* Register a new test for a named feature.
*
* @example
* has.add('dom-addeventlistener', !!document.addEventListener);
*
* @example
* has.add('touch-events', function () {
* return 'ontouchstart' in document
* });
*
* @param feature the name of the feature
* @param value the value reported of the feature, or a function that will be executed once on first test
* @param overwrite if an existing value should be overwritten. Defaults to false.
*/
function add(feature, value) {
var overwrite = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
var normalizedFeature = feature.toLowerCase();
if (exists(normalizedFeature) && !overwrite && !(normalizedFeature in staticCache)) {
throw new TypeError("Feature \"".concat(feature, "\" exists and overwrite not true."));
}
if (typeof value === 'function') {
testFunctions[normalizedFeature] = value;
} else {
testCache[normalizedFeature] = value;
delete testFunctions[normalizedFeature];
}
}
/**
* Return the current value of a named feature.
*
* @param feature The name of the feature to test.
*/
function has(feature) {
var strict = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
var result;
var normalizedFeature = feature.toLowerCase();
if (normalizedFeature in staticCache) {
result = staticCache[normalizedFeature];
} else if (testFunctions[normalizedFeature]) {
result = testCache[normalizedFeature] = testFunctions[normalizedFeature].call(null);
delete testFunctions[normalizedFeature];
} else if (normalizedFeature in testCache) {
result = testCache[normalizedFeature];
} else if (strict) {
throw new TypeError("Attempt to detect unregistered has feature \"".concat(feature, "\""));
}
return result;
}
/*
* Out of the box feature tests
*/
add('public-path', undefined);
/* flag for dojo debug, default to false */
add('dojo-debug', false);
/* Detects if the environment is "browser like" */
add('host-browser', typeof document !== 'undefined' && typeof location !== 'undefined');
/* Detects if the environment is "jsdom" */
add('host-jsdom', has('host-browser') && typeof navigator !== 'undefined' && navigator.userAgent.indexOf('jsdom') !== -1);
/* Detects if the environment appears to be NodeJS */
add('host-node', function () {
if ((typeof process === "undefined" ? "undefined" : _babel_runtime_helpers_typeof__WEBPACK_IMPORTED_MODULE_2___default()(process)) === 'object' && process.versions && process.versions.node) {
return process.versions.node;
}
});
add('fetch', 'fetch' in _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"] && typeof _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].fetch === 'function', true);
add('es6-array', function () {
return ['from', 'of'].every(function (key) {
return key in _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].Array;
}) && ['findIndex', 'find', 'copyWithin'].every(function (key) {
return key in _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].Array.prototype;
});
}, true);
add('es6-array-fill', function () {
if ('fill' in _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].Array.prototype) {
/* Some versions of Safari do not properly implement this */
return [1].fill(9, Number.POSITIVE_INFINITY)[0] === 1;
}
return false;
}, true);
add('es7-array', function () {
return 'includes' in _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].Array.prototype;
}, true);
add('es2019-array', function () {
return 'flat' in _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].Array.prototype;
}, true);
/* Map */
add('es6-map', function () {
if (typeof _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].Map === 'function') {
/*
IE11 and older versions of Safari are missing critical ES6 Map functionality
We wrap this in a try/catch because sometimes the Map constructor exists, but does not
take arguments (iOS 8.4)
*/
try {
var map = new _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].Map([[0, 1]]);
return map.has(0) && typeof map.keys === 'function' && has('es6-symbol') && typeof map.values === 'function' && typeof map.entries === 'function';
} catch (e) {
/* istanbul ignore next: not testing on iOS at the moment */
return false;
}
}
return false;
}, true);
add('es6-iterator', function () {
return has('es6-map');
});
/* Math */
add('es6-math', function () {
return ['clz32', 'sign', 'log10', 'log2', 'log1p', 'expm1', 'cosh', 'sinh', 'tanh', 'acosh', 'asinh', 'atanh', 'trunc', 'fround', 'cbrt', 'hypot'].every(function (name) {
return typeof _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].Math[name] === 'function';
});
}, true);
add('es6-math-imul', function () {
if ('imul' in _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].Math) {
/* Some versions of Safari on ios do not properly implement this */
return Math.imul(0xffffffff, 5) === -5;
}
return false;
}, true);
/* Object */
add('es6-object', function () {
return has('es6-symbol') && ['assign', 'is', 'getOwnPropertySymbols', 'setPrototypeOf'].every(function (name) {
return typeof _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].Object[name] === 'function';
});
}, true);
add('es2017-object', function () {
return ['values', 'entries', 'getOwnPropertyDescriptors'].every(function (name) {
return typeof _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].Object[name] === 'function';
});
}, true);
/* Observable */
add('es-observable', function () {
return typeof _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].Observable !== 'undefined';
}, true);
/* Promise */
add('es6-promise', function () {
return typeof _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].Promise !== 'undefined' && has('es6-symbol');
}, true);
add('es2018-promise-finally', function () {
return has('es6-promise') && typeof _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].Promise.prototype.finally !== 'undefined';
}, true);
/* Set */
add('es6-set', function () {
if (typeof _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].Set === 'function') {
/* IE11 and older versions of Safari are missing critical ES6 Set functionality */
var set = new _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].Set([1]);
return set.has(1) && 'keys' in set && typeof set.keys === 'function' && has('es6-symbol');
}
return false;
}, true);
/* String */
add('es6-string', function () {
return [
/* static methods */
'fromCodePoint'].every(function (key) {
return typeof _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].String[key] === 'function';
}) && [
/* instance methods */
'codePointAt', 'normalize', 'repeat', 'startsWith', 'endsWith', 'includes'].every(function (key) {
return typeof _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].String.prototype[key] === 'function';
});
}, true);
add('es6-string-raw', function () {
function getCallSite(callSite) {
var result = _babel_runtime_helpers_toConsumableArray__WEBPACK_IMPORTED_MODULE_1___default()(callSite);
result.raw = callSite.raw;
return result;
}
if ('raw' in _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].String) {
var b = 1;
var callSite = getCallSite(_templateObject(), b);
callSite.raw = ['a\\n'];
var supportsTrunc = _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].String.raw(callSite, 42) === 'a\\n';
return supportsTrunc;
}
return false;
}, true);
add('es2017-string', function () {
return ['padStart', 'padEnd'].every(function (key) {
return typeof _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].String.prototype[key] === 'function';
});
}, true);
/* Symbol */
add('es6-symbol', function () {
return typeof _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].Symbol !== 'undefined' && _babel_runtime_helpers_typeof__WEBPACK_IMPORTED_MODULE_2___default()(Symbol()) === 'symbol';
}, true);
/* WeakMap */
add('es6-weakmap', function () {
if (typeof _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].WeakMap !== 'undefined') {
/* IE11 and older versions of Safari are missing critical ES6 Map functionality */
var key1 = {};
var key2 = {};
var map = new _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].WeakMap([[key1, 1]]);
Object.freeze(key1);
return map.get(key1) === 1 && map.set(key2, 2) === map && has('es6-symbol');
}
return false;
}, true);
/* Miscellaneous features */
add('microtasks', function () {
return has('es6-promise') || has('host-node') || has('dom-mutationobserver');
}, true);
add('postmessage', function () {
// If window is undefined, and we have postMessage, it probably means we're in a web worker. Web workers have
// post message but it doesn't work how we expect it to, so it's best just to pretend it doesn't exist.
return typeof _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].window !== 'undefined' && typeof _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].postMessage === 'function';
}, true);
add('raf', function () {
return typeof _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].requestAnimationFrame === 'function';
}, true);
add('setimmediate', function () {
return typeof _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].setImmediate !== 'undefined';
}, true);
/* DOM Features */
add('dom-mutationobserver', function () {
if (has('host-browser') && Boolean(_shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].MutationObserver || _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].WebKitMutationObserver)) {
// IE11 has an unreliable MutationObserver implementation where setProperty() does not
// generate a mutation event, observers can crash, and the queue does not drain
// reliably. The following feature test was adapted from
// https://gist.github.com/t10ko/4aceb8c71681fdb275e33efe5e576b14
var example = document.createElement('div');
/* tslint:disable-next-line:variable-name */
var HostMutationObserver = _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].MutationObserver || _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].WebKitMutationObserver;
var observer = new HostMutationObserver(function () {});
observer.observe(example, {
attributes: true
});
example.style.setProperty('display', 'block');
return Boolean(observer.takeRecords().length);
}
return false;
}, true);
add('dom-webanimation', function () {
return has('host-browser') && _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].Animation !== undefined && _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].KeyframeEffect !== undefined;
}, true);
add('abort-controller', function () {
return typeof _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].AbortController !== 'undefined';
});
add('abort-signal', function () {
return typeof _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].AbortSignal !== 'undefined';
});
add('dom-intersection-observer', function () {
return has('host-browser') && _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].IntersectionObserver !== undefined;
}, true);
add('dom-resize-observer', function () {
return has('host-browser') && _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].ResizeObserver !== undefined;
}, true);
add('dom-pointer-events', function () {
return has('host-browser') && _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].onpointerdown !== undefined;
}, true);
add('dom-css-variables', function () {
return has('host-browser') && !has('host-jsdom') && _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].window.CSS && _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].window.CSS.supports && _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].window.CSS.supports('(--a: 0)');
}, true);
add('dom-inert', function () {
return has('host-browser') && Element.prototype.hasOwnProperty('inert');
}, true);
add('build-elide', false);
add('test', false);
add('global-this', function () {
return typeof _shim_global__WEBPACK_IMPORTED_MODULE_3__["default"].globalThis !== 'undefined';
});
/***/ }),
/***/ "./node_modules/@dojo/framework/shim/Promise.mjs":
/*!*******************************************************!*\
!*** ./node_modules/@dojo/framework/shim/Promise.mjs ***!
\*******************************************************/
/*! exports provided: ShimPromise, isThenable, default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ShimPromise", function() { return ShimPromise; });
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isThenable", function() { return isThenable; });
/* harmony import */ var _babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "./node_modules/@babel/runtime/helpers/classCallCheck.js");
/* harmony import */ var _babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0__);
/* harmony import */ var _babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @babel/runtime/helpers/createClass */ "./node_modules/@babel/runtime/helpers/createClass.js");
/* harmony import */ var _babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_createClass__WEBPACK_IMPORTED_MODULE_1__);
/* harmony import */ var _global__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./global */ "./node_modules/@dojo/framework/shim/global.mjs");
/* harmony import */ var _support_queue__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./support/queue */ "./node_modules/@dojo/framework/shim/support/queue.mjs");
/* harmony import */ var _Symbol__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Symbol */ "./node_modules/@dojo/framework/shim/Symbol.mjs");
/* harmony import */ var _core_has__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../core/has */ "./node_modules/@dojo/framework/core/has.mjs");
function _createForOfIteratorHelper(o) { if (typeof Symbol === "undefined" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (o = _unsupportedIterableToArray(o))) { var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var it, normalCompletion = true, didErr = false, err; return { s: function s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
var _a;
"!has('microtasks')";
"!has('es6-symbol')";
var ShimPromise = _global__WEBPACK_IMPORTED_MODULE_2__["default"].Promise;
var isThenable = function isThenable(value) {
return value && typeof value.then === 'function';
};
if (!Object(_core_has__WEBPACK_IMPORTED_MODULE_5__["default"])('es6-promise')) {
_global__WEBPACK_IMPORTED_MODULE_2__["default"].Promise = ShimPromise = (_a = /*#__PURE__*/function () {
/**
* Creates a new Promise.
*
* @constructor
*
* @param executor
* The executor function is called immediately when the Promise is instantiated. It is responsible for
* starting the asynchronous operation when it is invoked.
*
* The executor must call either the passed `resolve` function when the asynchronous operation has completed
* successfully, or the `reject` function when the operation fails.
*/
function Promise(executor) {
var _this = this;
_babel_runtime_helpers_classCallCheck__WEBPACK_IMPORTED_MODULE_0___default()(this, Promise);
/**
* The current state of this promise.
*/
this.state = 1
/* Pending */
;
this[Symbol.toStringTag] = 'Promise';
/**
* If true, the resolution of this promise is chained ("locked in") to another promise.
*/
var isChained = false;
/**
* Whether or not this promise is in a resolved state.
*/
var isResolved = function isResolved() {
return _this.state !== 1
/* Pending */
|| isChained;
};
/**
* Callbacks that should be invoked once the asynchronous operation has completed.
*/
var callbacks = [];
/**
* Initially pushes callbacks onto a queue for execution once this promise settles. After the promise settles,
* enqueues callbacks for execution on the next event loop turn.
*/
var whenFinished = function whenFinished(callback) {
if (callbacks) {
callbacks.push(callback);
}
};
/**
* Settles this promise.
*
* @param newState The resolved state for this promise.
* @param {T|any} value The resolved value for this promise.