clientnode 4.0.1459 → 4.0.1461

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.
Files changed (142) hide show
  1. package/dist/Lock.d.ts +39 -0
  2. package/dist/Lock.js +69 -83
  3. package/dist/Logger.d.ts +102 -0
  4. package/dist/Logger.js +798 -163
  5. package/dist/Semaphore.d.ts +29 -0
  6. package/dist/Semaphore.js +56 -46
  7. package/dist/array.d.ts +150 -0
  8. package/dist/array.js +668 -337
  9. package/dist/bundle/Lock.js +86 -0
  10. package/dist/bundle/Logger.js +820 -0
  11. package/dist/bundle/Semaphore.js +75 -0
  12. package/dist/bundle/array.js +783 -0
  13. package/dist/bundle/cli.js +59 -0
  14. package/dist/bundle/constants.js +214 -0
  15. package/dist/bundle/context.js +316 -0
  16. package/dist/bundle/cookie.js +338 -0
  17. package/dist/bundle/data-transfer.js +867 -0
  18. package/dist/bundle/datetime.js +1190 -0
  19. package/dist/bundle/domNode.js +586 -0
  20. package/dist/bundle/expression/evaluators.js +1270 -0
  21. package/dist/bundle/expression/helper.js +117 -0
  22. package/dist/bundle/expression/index.js +1399 -0
  23. package/dist/bundle/expression/indicator-functions.js +332 -0
  24. package/dist/bundle/expression/type.js +16 -0
  25. package/dist/bundle/filesystem.js +472 -0
  26. package/dist/bundle/function.js +117 -0
  27. package/dist/bundle/index.js +3291 -0
  28. package/dist/bundle/indicators.js +572 -0
  29. package/dist/bundle/module.js +250 -0
  30. package/dist/bundle/number.js +534 -0
  31. package/dist/bundle/object.js +1146 -0
  32. package/dist/bundle/process.js +328 -0
  33. package/dist/bundle/property-types.js +36 -0
  34. package/dist/bundle/scope.js +2163 -0
  35. package/dist/bundle/string.js +1252 -0
  36. package/dist/bundle/test-helper.js +808 -0
  37. package/dist/bundle/type.js +16 -0
  38. package/dist/bundle/utility.js +456 -0
  39. package/dist/cli.d.ts +31 -0
  40. package/dist/cli.js +45 -37
  41. package/dist/compatible/Lock.js +86 -0
  42. package/dist/compatible/Logger.js +820 -0
  43. package/dist/compatible/Semaphore.js +75 -0
  44. package/dist/compatible/array.js +783 -0
  45. package/dist/compatible/cli.js +59 -0
  46. package/dist/compatible/constants.js +214 -0
  47. package/dist/compatible/context.js +316 -0
  48. package/dist/compatible/cookie.js +338 -0
  49. package/dist/compatible/data-transfer.js +867 -0
  50. package/dist/compatible/datetime.js +1190 -0
  51. package/dist/compatible/domNode.js +586 -0
  52. package/dist/compatible/expression/evaluators.js +1270 -0
  53. package/dist/compatible/expression/helper.js +117 -0
  54. package/dist/compatible/expression/index.js +1399 -0
  55. package/dist/compatible/expression/indicator-functions.js +332 -0
  56. package/dist/compatible/expression/type.js +16 -0
  57. package/dist/compatible/filesystem.js +472 -0
  58. package/dist/compatible/function.js +117 -0
  59. package/dist/compatible/index.js +3291 -0
  60. package/dist/compatible/indicators.js +572 -0
  61. package/dist/compatible/module.js +250 -0
  62. package/dist/compatible/number.js +534 -0
  63. package/dist/compatible/object.js +1146 -0
  64. package/dist/compatible/process.js +328 -0
  65. package/dist/compatible/property-types.js +36 -0
  66. package/dist/compatible/scope.js +2163 -0
  67. package/dist/compatible/string.js +1252 -0
  68. package/dist/compatible/test-helper.js +808 -0
  69. package/dist/compatible/type.js +16 -0
  70. package/dist/compatible/utility.js +456 -0
  71. package/dist/constants.d.ts +99 -0
  72. package/dist/constants.js +198 -110
  73. package/dist/context.d.ts +8 -0
  74. package/dist/context.js +301 -25
  75. package/dist/cookie.d.ts +31 -0
  76. package/dist/cookie.js +302 -48
  77. package/dist/data-transfer.d.ts +45 -0
  78. package/dist/data-transfer.js +817 -166
  79. package/dist/datetime.d.ts +37 -0
  80. package/dist/datetime.js +1149 -241
  81. package/dist/domNode.d.ts +82 -0
  82. package/dist/domNode.js +532 -277
  83. package/dist/expression/evaluators.d.ts +55 -0
  84. package/dist/expression/evaluators.js +1231 -234
  85. package/dist/expression/helper.d.ts +4 -0
  86. package/dist/expression/helper.js +102 -82
  87. package/dist/expression/index.d.ts +7 -0
  88. package/dist/expression/index.js +1383 -10
  89. package/dist/expression/indicator-functions.d.ts +14 -0
  90. package/dist/expression/indicator-functions.js +316 -21
  91. package/dist/expression/type.d.ts +70 -0
  92. package/dist/expression/type.js +1 -5
  93. package/dist/filesystem.d.ts +143 -0
  94. package/dist/filesystem.js +385 -324
  95. package/dist/function.d.ts +20 -0
  96. package/dist/function.js +93 -51
  97. package/dist/index.d.ts +23 -0
  98. package/dist/index.js +3274 -26
  99. package/dist/indicators.d.ts +68 -0
  100. package/dist/indicators.js +519 -68
  101. package/dist/module.d.ts +8 -0
  102. package/dist/module.js +233 -99
  103. package/dist/number.d.ts +35 -0
  104. package/dist/number.js +498 -25
  105. package/dist/object.d.ts +231 -0
  106. package/dist/object.js +958 -791
  107. package/dist/process.d.ts +22 -0
  108. package/dist/process.js +298 -38
  109. package/dist/property-types.d.ts +460 -0
  110. package/dist/property-types.js +17 -96
  111. package/dist/scope.d.ts +44 -0
  112. package/dist/scope.js +2134 -56
  113. package/dist/string.d.ts +312 -0
  114. package/dist/string.js +1030 -603
  115. package/dist/test/Lock.d.ts +1 -0
  116. package/dist/test/Logger.d.ts +1 -0
  117. package/dist/test/Semaphore.d.ts +1 -0
  118. package/dist/test/array.d.ts +1 -0
  119. package/dist/test/cookie.d.ts +1 -0
  120. package/dist/test/data-transfer.d.ts +1 -0
  121. package/dist/test/datetime.d.ts +1 -0
  122. package/dist/test/domNode.d.ts +1 -0
  123. package/dist/test/expression/evaluators.d.ts +1 -0
  124. package/dist/test/expression/helper.d.ts +1 -0
  125. package/dist/test/expression/indicator-functions.d.ts +1 -0
  126. package/dist/test/filesystem.d.ts +1 -0
  127. package/dist/test/function.d.ts +1 -0
  128. package/dist/test/indicators.d.ts +1 -0
  129. package/dist/test/number.d.ts +1 -0
  130. package/dist/test/object.d.ts +1 -0
  131. package/dist/test/process.d.ts +1 -0
  132. package/dist/test/property-types.d.ts +1 -0
  133. package/dist/test/scope.d.ts +1 -0
  134. package/dist/test/string.d.ts +1 -0
  135. package/dist/test/utility.d.ts +1 -0
  136. package/dist/test-helper.d.ts +143 -0
  137. package/dist/test-helper.js +639 -171
  138. package/dist/type.d.ts +230 -0
  139. package/dist/type.js +4 -9
  140. package/dist/utility.d.ts +44 -0
  141. package/dist/utility.js +408 -91
  142. package/package.json +3 -3
@@ -0,0 +1,250 @@
1
+ if(typeof window==='undefined'||window===null)var window=(typeof global==='undefined'||global===null)?{}:global;/******/ var __webpack_modules__ = ({
2
+
3
+ /***/ 2:
4
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
5
+
6
+ __webpack_require__.a(module, async function (__webpack_handle_async_dependencies__, __webpack_async_result__) { try {
7
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
8
+ /* harmony export */ Dx: function() { return /* binding */ isolatedRequire; },
9
+ /* harmony export */ I5: function() { return /* binding */ optionalRequire; },
10
+ /* harmony export */ Ni: function() { return /* binding */ clearRequireCache; },
11
+ /* harmony export */ Sw: function() { return /* binding */ optionalImport; },
12
+ /* harmony export */ a8: function() { return /* binding */ determineGlobalContext; },
13
+ /* harmony export */ lE: function() { return /* binding */ currentRequire; },
14
+ /* harmony export */ xN: function() { return /* binding */ isImportSyntaxSupported; }
15
+ /* harmony export */ });
16
+ /* module decorator */ module = __webpack_require__.hmd(module);
17
+ // #!/usr/bin/env babel-node
18
+ // -*- coding: utf-8 -*-
19
+ /** @module module *//* !
20
+ region header
21
+ [Project page](https://torben.website/clientnode)
22
+
23
+ Copyright Torben Sickert (info["~at~"]torben.website) 16.12.2012
24
+
25
+ License
26
+ -------
27
+
28
+ This library written by Torben Sickert stands under a creative commons
29
+ naming 3.0 unported license.
30
+ See https://creativecommons.org/licenses/by/3.0/deed.de
31
+ endregion
32
+ */function _defaults(e,r){for(var t=Object.getOwnPropertyNames(r),o=0;o<t.length;o++){var n=t[o],a=Object.getOwnPropertyDescriptor(r,n);a&&a.configurable&&void 0===e[n]&&Object.defineProperty(e,n,a)}return e}function _regenerator(){/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */var e,t,r="function"==typeof Symbol?Symbol:{},n=r.iterator||"@@iterator",o=r.toStringTag||"@@toStringTag";function i(r,n,o,i){var c=n&&n.prototype instanceof Generator?n:Generator,u=Object.create(c.prototype);return _regeneratorDefine2(u,"_invoke",function(r,n,o){var i,c,u,f=0,p=o||[],y=!1,G={p:0,n:0,v:e,a:d,f:d.bind(e,4),d:function d(t,r){return i=t,c=0,u=e,G.n=r,a}};function d(r,n){for(c=r,u=n,t=0;!y&&f&&!o&&t<p.length;t++){var o,i=p[t],d=G.p,l=i[2];r>3?(o=l===n)&&(u=i[(c=i[4])?5:(c=3,3)],i[4]=i[5]=e):i[0]<=d&&((o=r<2&&d<i[1])?(c=0,G.v=n,G.n=i[1]):d<l&&(o=r<3||i[0]>n||n>l)&&(i[4]=r,i[5]=n,G.n=l,c=0))}if(o||r>1)return a;throw y=!0,n}return function(o,p,l){if(f>1)throw TypeError("Generator is already running");for(y&&1===p&&d(p,l),c=p,u=l;(t=c<2?e:u)||!y;){i||(c?c<3?(c>1&&(G.n=-1),d(c,u)):G.n=u:G.v=u);try{if(f=2,i){if(c||(o="next"),t=i[o]){if(!(t=t.call(i,u)))throw TypeError("iterator result is not an object");if(!t.done)return t;u=t.value,c<2&&(c=0)}else 1===c&&(t=i.return)&&t.call(i),c<2&&(u=TypeError("The iterator does not provide a '"+o+"' method"),c=1);i=e}else if((t=(y=G.n<0)?u:r.call(n,G))!==a)break}catch(t){i=e,c=1,u=t}finally{f=1}}return{value:t,done:y}}}(r,o,i),!0),u}var a={};function Generator(){}function GeneratorFunction(){}function GeneratorFunctionPrototype(){}t=Object.getPrototypeOf;var c=[][n]?t(t([][n]())):(_regeneratorDefine2(t={},n,function(){return this}),t),u=GeneratorFunctionPrototype.prototype=Generator.prototype=Object.create(c);function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,GeneratorFunctionPrototype):(_defaults(e,GeneratorFunctionPrototype),_regeneratorDefine2(e,o,"GeneratorFunction")),e.prototype=Object.create(u),e}return GeneratorFunction.prototype=GeneratorFunctionPrototype,_regeneratorDefine2(u,"constructor",GeneratorFunctionPrototype),_regeneratorDefine2(GeneratorFunctionPrototype,"constructor",GeneratorFunction),GeneratorFunction.displayName="GeneratorFunction",_regeneratorDefine2(GeneratorFunctionPrototype,o,"GeneratorFunction"),_regeneratorDefine2(u),_regeneratorDefine2(u,o,"Generator"),_regeneratorDefine2(u,n,function(){return this}),_regeneratorDefine2(u,"toString",function(){return"[object Generator]"}),(_regenerator=function _regenerator(){return{w:i,m:f}})()}function _regeneratorDefine2(e,r,n,t){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}_regeneratorDefine2=function _regeneratorDefine(e,r,n,t){function o(r,n){_regeneratorDefine2(e,r,function(e){return this._invoke(r,n,e)})}r?i?i(e,r,{value:n,enumerable:!t,configurable:!t,writable:!t}):e[r]=n:(o("next",0),o("throw",1),o("return",2))},_regeneratorDefine2(e,r,n,t)}function asyncGeneratorStep(n,t,e,r,o,a,c){try{var i=n[a](c),u=i.value}catch(n){return void e(n)}i.done?t(u):Promise.resolve(u).then(r,o)}function _asyncToGenerator(n){return function(){var t=this,e=arguments;return new Promise(function(r,o){var a=n.apply(t,e);function _next(n){asyncGeneratorStep(a,r,o,_next,_throw,"next",n)}function _throw(n){asyncGeneratorStep(a,r,o,_next,_throw,"throw",n)}_next(void 0)})}}function _slicedToArray(r,e){return _arrayWithHoles(r)||_iterableToArrayLimit(r,e)||_unsupportedIterableToArray(r,e)||_nonIterableRest()}function _nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function _unsupportedIterableToArray(r,a){if(r){if("string"==typeof r)return _arrayLikeToArray(r,a);var t={}.toString.call(r).slice(8,-1);return"Object"===t&&r.constructor&&(t=r.constructor.name),"Map"===t||"Set"===t?Array.from(r):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?_arrayLikeToArray(r,a):void 0}}function _arrayLikeToArray(r,a){(null==a||a>r.length)&&(a=r.length);for(var e=0,n=Array(a);e<a;e++)n[e]=r[e];return n}function _iterableToArrayLimit(r,l){var t=null==r?null:"undefined"!=typeof Symbol&&r[Symbol.iterator]||r["@@iterator"];if(null!=t){var e,n,i,u,a=[],f=!0,o=!1;try{if(i=(t=t.call(r)).next,0===l){if(Object(t)!==t)return;f=!1}else for(;!(f=(e=i.call(t)).done)&&(a.push(e.value),a.length!==l);f=!0);}catch(r){o=!0,n=r}finally{try{if(!f&&null!=t.return&&(u=t.return(),Object(u)!==u))return}finally{if(o)throw n}}return a}}function _arrayWithHoles(r){if(Array.isArray(r))return r}var determineGlobalContext=function determineGlobalContext(){if(typeof globalThis==="undefined"){if(typeof window==="undefined"){if(typeof __webpack_require__.g==="undefined")return false?0:module;if(Object.prototype.hasOwnProperty.call(__webpack_require__.g,"window"))return __webpack_require__.g.window;return __webpack_require__.g}return window}return globalThis};var globalContext=determineGlobalContext();// Make preprocessed import function available at runtime.
33
+ var isImportSyntaxSupported=function isImportSyntaxSupported(){try{// eslint-disable-next-line @typescript-eslint/no-implied-eval
34
+ new Function("import(\"data:text/javascript,\")");return true}catch(_unused){return false}};// Make preprocessed require function available at runtime.
35
+ var customRequire=typeof globalContext.require==="undefined"?null:globalContext.require;if(!customRequire&&isImportSyntaxSupported())try{var _await$Function=/*
36
+ eslint-disable
37
+ @typescript-eslint/no-implied-eval,
38
+ @typescript-eslint/no-unsafe-call
39
+ */await new Function("return import(\"node:module\")")(),createRequire=_await$Function.createRequire;/*
40
+ eslint-enable
41
+ @typescript-eslint/no-implied-eval,
42
+ @typescript-eslint/no-unsafe-call
43
+ */// eslint-disable-next-line @typescript-eslint/no-unsafe-call
44
+ customRequire=createRequire("file:///__w/clientnode/clientnode/src/module.ts")}catch(_unused2){// Ignore error.
45
+ }var currentRequire=customRequire;var optionalRequire=function optionalRequire(id){try{return currentRequire?currentRequire(id):null}catch(_unused3){return null}};var clearRequireCache=function clearRequireCache(cache){if(cache===void 0){cache=(currentRequire===null||currentRequire===void 0?void 0:currentRequire.cache)||__webpack_require__.c}var backup={};for(var _i=0,_Object$entries=Object.entries(cache);_i<_Object$entries.length;_i++){var _Object$entries$_i=_slicedToArray(_Object$entries[_i],2),key=_Object$entries$_i[0],_module=_Object$entries$_i[1];backup[key]=_module;delete cache[key]}return backup};var restoreRequireCache=function restoreRequireCache(cache,backup){if(cache===void 0){cache=(currentRequire===null||currentRequire===void 0?void 0:currentRequire.cache)||__webpack_require__.c}clearRequireCache();for(var _i2=0,_Object$entries2=Object.entries(backup);_i2<_Object$entries2.length;_i2++){var _Object$entries2$_i=_slicedToArray(_Object$entries2[_i2],2),key=_Object$entries2$_i[0],_module2=_Object$entries2$_i[1];cache[key]=_module2}};var isolatedRequire=function isolatedRequire(path,requireFunction){if(requireFunction===void 0){requireFunction=currentRequire||__webpack_require__(6)}var backup=clearRequireCache(requireFunction.cache);try{return requireFunction(path);// eslint-disable-next-line no-useless-catch
46
+ }catch(error){throw error}finally{restoreRequireCache(requireFunction.cache,backup)}};var optionalImport=/*#__PURE__*/function(){var _optionalImport=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee(id,options){var _t,_t2;return _regenerator().w(function(_context){while(1)switch(_context.p=_context.n){case 0:if(options===void 0){options={}}_context.p=1;if(!isImportSyntaxSupported()){_context.n=3;break}_context.n=2;return new Function("options","return import('".concat(id,"', options)"))(options);case 2:_t=_context.v;_context.n=5;break;case 3:_context.n=4;return Promise.resolve(null);case 4:_t=_context.v;case 5:return _context.a(2,_t);case 6:_context.p=6;_t2=_context.v;console.error("OptionalImport failed for",id,_t2);_context.n=7;return Promise.resolve(null);case 7:return _context.a(2,_context.v)}},_callee,null,[[1,6]])}));function optionalImport(_x,_x2){return _optionalImport.apply(this,arguments)}return optionalImport}();
47
+ __webpack_async_result__();
48
+ } catch(e) { __webpack_async_result__(e); } }, 1);
49
+
50
+ /***/ }),
51
+
52
+ /***/ 6:
53
+ /***/ (function(module) {
54
+
55
+ function webpackEmptyContext(req) {
56
+ var e = new Error("Cannot find module '" + req + "'");
57
+ e.code = 'MODULE_NOT_FOUND';
58
+ throw e;
59
+ }
60
+ webpackEmptyContext.keys = function() { return []; };
61
+ webpackEmptyContext.resolve = webpackEmptyContext;
62
+ webpackEmptyContext.id = 6;
63
+ module.exports = webpackEmptyContext;
64
+
65
+ /***/ })
66
+
67
+ /******/ });
68
+ /************************************************************************/
69
+ /******/ // The module cache
70
+ /******/ var __webpack_module_cache__ = {};
71
+ /******/
72
+ /******/ // The require function
73
+ /******/ function __webpack_require__(moduleId) {
74
+ /******/ // Check if module is in cache
75
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
76
+ /******/ if (cachedModule !== undefined) {
77
+ /******/ return cachedModule.exports;
78
+ /******/ }
79
+ /******/ // Create a new module (and put it into the cache)
80
+ /******/ var module = __webpack_module_cache__[moduleId] = {
81
+ /******/ id: moduleId,
82
+ /******/ loaded: false,
83
+ /******/ exports: {}
84
+ /******/ };
85
+ /******/
86
+ /******/ // Execute the module function
87
+ /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
88
+ /******/
89
+ /******/ // Flag the module as loaded
90
+ /******/ module.loaded = true;
91
+ /******/
92
+ /******/ // Return the exports of the module
93
+ /******/ return module.exports;
94
+ /******/ }
95
+ /******/
96
+ /******/ // expose the module cache
97
+ /******/ __webpack_require__.c = __webpack_module_cache__;
98
+ /******/
99
+ /************************************************************************/
100
+ /******/ /* webpack/runtime/async module */
101
+ /******/ !function() {
102
+ /******/ var hasSymbol = typeof Symbol === "function";
103
+ /******/ var webpackQueues = hasSymbol ? Symbol("webpack queues") : "__webpack_queues__";
104
+ /******/ var webpackExports = hasSymbol ? Symbol("webpack exports") : "__webpack_exports__";
105
+ /******/ var webpackError = hasSymbol ? Symbol("webpack error") : "__webpack_error__";
106
+ /******/
107
+ /******/ var resolveQueue = function(queue) {
108
+ /******/ if(queue && queue.d < 1) {
109
+ /******/ queue.d = 1;
110
+ /******/ queue.forEach(function(fn) { fn.r--; });
111
+ /******/ queue.forEach(function(fn) { fn.r-- ? fn.r++ : fn(); });
112
+ /******/ }
113
+ /******/ }
114
+ /******/ var wrapDeps = function(deps) { return deps.map(function(dep) {
115
+ /******/ if(dep !== null && typeof dep === "object") {
116
+ /******/
117
+ /******/ if(dep[webpackQueues]) return dep;
118
+ /******/ if(dep.then) {
119
+ /******/ var queue = [];
120
+ /******/ queue.d = 0;
121
+ /******/ dep.then(function(r) {
122
+ /******/ obj[webpackExports] = r;
123
+ /******/ resolveQueue(queue);
124
+ /******/ }, function(e) {
125
+ /******/ obj[webpackError] = e;
126
+ /******/ resolveQueue(queue);
127
+ /******/ });
128
+ /******/ var obj = {};
129
+ /******/
130
+ /******/ obj[webpackQueues] = function(fn) { fn(queue); };
131
+ /******/ return obj;
132
+ /******/ }
133
+ /******/ }
134
+ /******/ var ret = {};
135
+ /******/ ret[webpackQueues] = function() {};
136
+ /******/ ret[webpackExports] = dep;
137
+ /******/ return ret;
138
+ /******/ }); };
139
+ /******/ __webpack_require__.a = function(module, body, hasAwait) {
140
+ /******/ var queue;
141
+ /******/ hasAwait && ((queue = []).d = -1);
142
+ /******/ var depQueues = new Set();
143
+ /******/ var exports = module.exports;
144
+ /******/ var currentDeps;
145
+ /******/ var outerResolve;
146
+ /******/ var reject;
147
+ /******/ var promise = new Promise(function(resolve, rej) {
148
+ /******/ reject = rej;
149
+ /******/ outerResolve = resolve;
150
+ /******/ });
151
+ /******/ promise[webpackExports] = exports;
152
+ /******/ promise[webpackQueues] = function(fn) { queue && fn(queue), depQueues.forEach(fn), promise["catch"](function() {}); };
153
+ /******/ module.exports = promise;
154
+ /******/ var handle = function(deps) {
155
+ /******/ currentDeps = wrapDeps(deps);
156
+ /******/ var fn;
157
+ /******/ var getResult = function() { return currentDeps.map(function(d) {
158
+ /******/
159
+ /******/ if(d[webpackError]) throw d[webpackError];
160
+ /******/ return d[webpackExports];
161
+ /******/ }); }
162
+ /******/ var promise = new Promise(function(resolve) {
163
+ /******/ fn = function() { resolve(getResult); };
164
+ /******/ fn.r = 0;
165
+ /******/ var fnQueue = function(q) { q !== queue && !depQueues.has(q) && (depQueues.add(q), q && !q.d && (fn.r++, q.push(fn))); };
166
+ /******/ currentDeps.map(function(dep) { dep[webpackQueues](fnQueue); });
167
+ /******/ });
168
+ /******/ return fn.r ? promise : getResult();
169
+ /******/ }
170
+ /******/ var done = function(err) { (err ? reject(promise[webpackError] = err) : outerResolve(exports)), resolveQueue(queue); }
171
+ /******/ body(handle, done);
172
+ /******/ queue && queue.d < 0 && (queue.d = 0);
173
+ /******/ };
174
+ /******/ }();
175
+ /******/
176
+ /******/ /* webpack/runtime/define property getters */
177
+ /******/ !function() {
178
+ /******/ // define getter/value functions for harmony exports
179
+ /******/ __webpack_require__.d = function(exports, definition) {
180
+ /******/ if(Array.isArray(definition)) {
181
+ /******/ var i = 0;
182
+ /******/ while(i < definition.length) {
183
+ /******/ var key = definition[i++];
184
+ /******/ var binding = definition[i++];
185
+ /******/ if(!__webpack_require__.o(exports, key)) {
186
+ /******/ if(binding === 0) {
187
+ /******/ Object.defineProperty(exports, key, { enumerable: true, value: definition[i++] });
188
+ /******/ } else {
189
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: binding });
190
+ /******/ }
191
+ /******/ } else if(binding === 0) { i++; }
192
+ /******/ }
193
+ /******/ } else {
194
+ /******/ for(var key in definition) {
195
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
196
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
197
+ /******/ }
198
+ /******/ }
199
+ /******/ }
200
+ /******/ };
201
+ /******/ }();
202
+ /******/
203
+ /******/ /* webpack/runtime/global */
204
+ /******/ !function() {
205
+ /******/ __webpack_require__.g = (function() {
206
+ /******/ if (typeof globalThis === 'object') return globalThis;
207
+ /******/ try {
208
+ /******/ return this || new Function('return this')();
209
+ /******/ } catch (e) {
210
+ /******/ if (typeof window === 'object') return window;
211
+ /******/ }
212
+ /******/ })();
213
+ /******/ }();
214
+ /******/
215
+ /******/ /* webpack/runtime/harmony module decorator */
216
+ /******/ !function() {
217
+ /******/ __webpack_require__.hmd = function(module) {
218
+ /******/ module = Object.create(module);
219
+ /******/ if (!module.children) module.children = [];
220
+ /******/ Object.defineProperty(module, 'exports', {
221
+ /******/ enumerable: true,
222
+ /******/ set: function() {
223
+ /******/ throw new Error('ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: ' + module.id);
224
+ /******/ }
225
+ /******/ });
226
+ /******/ return module;
227
+ /******/ };
228
+ /******/ }();
229
+ /******/
230
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
231
+ /******/ !function() {
232
+ /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
233
+ /******/ }();
234
+ /******/
235
+ /************************************************************************/
236
+ /******/
237
+ /******/ // module cache are used so entry inlining is disabled
238
+ /******/ // startup
239
+ /******/ // Load entry module and return exports
240
+ /******/ var __webpack_exports__ = __webpack_require__(2);
241
+ /******/ __webpack_exports__ = await __webpack_exports__;
242
+ /******/ var __webpack_exports__clearRequireCache = __webpack_exports__.Ni;
243
+ /******/ var __webpack_exports__currentRequire = __webpack_exports__.lE;
244
+ /******/ var __webpack_exports__determineGlobalContext = __webpack_exports__.a8;
245
+ /******/ var __webpack_exports__isImportSyntaxSupported = __webpack_exports__.xN;
246
+ /******/ var __webpack_exports__isolatedRequire = __webpack_exports__.Dx;
247
+ /******/ var __webpack_exports__optionalImport = __webpack_exports__.Sw;
248
+ /******/ var __webpack_exports__optionalRequire = __webpack_exports__.I5;
249
+ /******/ export { __webpack_exports__clearRequireCache as clearRequireCache, __webpack_exports__currentRequire as currentRequire, __webpack_exports__determineGlobalContext as determineGlobalContext, __webpack_exports__isImportSyntaxSupported as isImportSyntaxSupported, __webpack_exports__isolatedRequire as isolatedRequire, __webpack_exports__optionalImport as optionalImport, __webpack_exports__optionalRequire as optionalRequire };
250
+ /******/