clientnode 4.0.1430 → 4.0.1432

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 +94 -83
  3. package/dist/Logger.d.ts +102 -0
  4. package/dist/Logger.js +700 -163
  5. package/dist/Semaphore.d.ts +29 -0
  6. package/dist/Semaphore.js +81 -46
  7. package/dist/array.d.ts +150 -0
  8. package/dist/array.js +554 -337
  9. package/dist/bundle/Lock.js +111 -0
  10. package/dist/bundle/Logger.js +690 -0
  11. package/dist/bundle/Semaphore.js +100 -0
  12. package/dist/bundle/array.js +634 -0
  13. package/dist/bundle/cli.js +85 -0
  14. package/dist/bundle/constants.js +225 -0
  15. package/dist/bundle/context.js +242 -0
  16. package/dist/bundle/cookie.js +261 -0
  17. package/dist/bundle/data-transfer.js +726 -0
  18. package/dist/bundle/datetime.js +1036 -0
  19. package/dist/bundle/domNode.js +470 -0
  20. package/dist/bundle/expression/evaluators.js +1087 -0
  21. package/dist/bundle/expression/helper.js +106 -0
  22. package/dist/bundle/expression/index.js +1195 -0
  23. package/dist/bundle/expression/indicator-functions.js +235 -0
  24. package/dist/bundle/expression/type.js +50 -0
  25. package/dist/bundle/filesystem.js +373 -0
  26. package/dist/bundle/function.js +105 -0
  27. package/dist/bundle/index.js +2654 -0
  28. package/dist/bundle/indicators.js +445 -0
  29. package/dist/bundle/number.js +411 -0
  30. package/dist/bundle/object.js +975 -0
  31. package/dist/bundle/process.js +274 -0
  32. package/dist/bundle/property-types.js +167 -0
  33. package/dist/bundle/require.js +179 -0
  34. package/dist/bundle/scope.js +1778 -0
  35. package/dist/bundle/string.js +1066 -0
  36. package/dist/bundle/test-helper.js +676 -0
  37. package/dist/bundle/type.js +50 -0
  38. package/dist/bundle/utility.js +361 -0
  39. package/dist/cli.d.ts +31 -0
  40. package/dist/cli.js +71 -37
  41. package/dist/compatible/Lock.js +111 -0
  42. package/dist/compatible/Logger.js +690 -0
  43. package/dist/compatible/Semaphore.js +100 -0
  44. package/dist/compatible/array.js +634 -0
  45. package/dist/compatible/cli.js +85 -0
  46. package/dist/compatible/constants.js +225 -0
  47. package/dist/compatible/context.js +242 -0
  48. package/dist/compatible/cookie.js +261 -0
  49. package/dist/compatible/data-transfer.js +726 -0
  50. package/dist/compatible/datetime.js +1036 -0
  51. package/dist/compatible/domNode.js +470 -0
  52. package/dist/compatible/expression/evaluators.js +1087 -0
  53. package/dist/compatible/expression/helper.js +106 -0
  54. package/dist/compatible/expression/index.js +1195 -0
  55. package/dist/compatible/expression/indicator-functions.js +235 -0
  56. package/dist/compatible/expression/type.js +50 -0
  57. package/dist/compatible/filesystem.js +373 -0
  58. package/dist/compatible/function.js +105 -0
  59. package/dist/compatible/index.js +2654 -0
  60. package/dist/compatible/indicators.js +445 -0
  61. package/dist/compatible/number.js +411 -0
  62. package/dist/compatible/object.js +975 -0
  63. package/dist/compatible/process.js +274 -0
  64. package/dist/compatible/property-types.js +167 -0
  65. package/dist/compatible/require.js +179 -0
  66. package/dist/compatible/scope.js +1778 -0
  67. package/dist/compatible/string.js +1066 -0
  68. package/dist/compatible/test-helper.js +676 -0
  69. package/dist/compatible/type.js +50 -0
  70. package/dist/compatible/utility.js +361 -0
  71. package/dist/constants.d.ts +99 -0
  72. package/dist/constants.js +209 -110
  73. package/dist/context.d.ts +8 -0
  74. package/dist/context.js +228 -25
  75. package/dist/cookie.d.ts +31 -0
  76. package/dist/cookie.js +225 -48
  77. package/dist/data-transfer.d.ts +45 -0
  78. package/dist/data-transfer.js +710 -166
  79. package/dist/datetime.d.ts +37 -0
  80. package/dist/datetime.js +1031 -241
  81. package/dist/domNode.d.ts +82 -0
  82. package/dist/domNode.js +440 -277
  83. package/dist/expression/evaluators.d.ts +55 -0
  84. package/dist/expression/evaluators.js +1084 -234
  85. package/dist/expression/helper.d.ts +4 -0
  86. package/dist/expression/helper.js +135 -82
  87. package/dist/expression/index.d.ts +7 -0
  88. package/dist/expression/index.js +1217 -10
  89. package/dist/expression/indicator-functions.d.ts +14 -0
  90. package/dist/expression/indicator-functions.js +239 -21
  91. package/dist/expression/type.d.ts +70 -0
  92. package/dist/expression/type.js +34 -4
  93. package/dist/filesystem.d.ts +143 -0
  94. package/dist/filesystem.js +308 -323
  95. package/dist/function.d.ts +20 -0
  96. package/dist/function.js +125 -51
  97. package/dist/index.d.ts +23 -0
  98. package/dist/index.js +2677 -26
  99. package/dist/indicators.d.ts +68 -0
  100. package/dist/indicators.js +426 -68
  101. package/dist/number.d.ts +35 -0
  102. package/dist/number.js +409 -25
  103. package/dist/object.d.ts +215 -0
  104. package/dist/object.js +836 -759
  105. package/dist/process.d.ts +22 -0
  106. package/dist/process.js +245 -40
  107. package/dist/property-types.d.ts +460 -0
  108. package/dist/property-types.js +157 -96
  109. package/dist/require.d.ts +8 -0
  110. package/dist/require.js +163 -66
  111. package/dist/scope.d.ts +44 -0
  112. package/dist/scope.js +1795 -56
  113. package/dist/string.d.ts +299 -0
  114. package/dist/string.js +891 -595
  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 +527 -172
  138. package/dist/type.d.ts +217 -0
  139. package/dist/type.js +37 -8
  140. package/dist/utility.d.ts +44 -0
  141. package/dist/utility.js +335 -91
  142. package/package.json +3 -3
package/dist/utility.js CHANGED
@@ -1,9 +1,151 @@
1
+ 'use strict';if(typeof module!=='undefined'&&module!==null&&eval('typeof require')!=='undefined'&&eval('require')!==null&&'main'in eval('require')&&eval('typeof require.main')!=='undefined'&&eval('require.main')!==null){var ORIGINAL_MAIN_MODULE=module;if(module!==eval('require.main')&&'paths'in module&&'paths'in eval('require.main')&&typeof __dirname!=='undefined'&&__dirname!==null)module.paths=eval('require.main.paths').concat(module.paths.filter(function(path){return eval('require.main.paths').includes(path)}))};if(typeof window==='undefined'||window===null)var window=(typeof global==='undefined'||global===null)?{}:global;(function webpackUniversalModuleDefinition(root, factory) {
2
+ if(typeof exports === 'object' && typeof module === 'object')
3
+ module.exports = factory(require("core-js/modules/es.array.includes.js"));
4
+ else if(typeof define === 'function' && define.amd)
5
+ define(["core-js/modules/es.array.includes.js"], factory);
6
+ else {
7
+ var a = typeof exports === 'object' ? factory(require("core-js/modules/es.array.includes.js")) : factory(root["core-js/modules/es.array.includes.js"]);
8
+ for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
9
+ }
10
+ })(this, function(__WEBPACK_EXTERNAL_MODULE__0__) {
11
+ return /******/ (function() { // webpackBootstrap
12
+ /******/ var __webpack_modules__ = ([
13
+ /* 0 */
14
+ /***/ (function(module) {
15
+
16
+ "use strict";
17
+ module.exports = __WEBPACK_EXTERNAL_MODULE__0__;
18
+
19
+ /***/ }),
20
+ /* 1 */,
21
+ /* 2 */
22
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
23
+
24
+ "use strict";
25
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
26
+ /* harmony export */ determineGlobalContext: function() { return /* binding */ determineGlobalContext; },
27
+ /* harmony export */ optionalImport: function() { return /* binding */ optionalImport; },
28
+ /* harmony export */ optionalRequire: function() { return /* binding */ optionalRequire; }
29
+ /* harmony export */ });
30
+ /* unused harmony exports currentRequire, clearRequireCache, isolatedRequire, isImportSyntaxSupported */
31
+ /* module decorator */ module = __webpack_require__.hmd(module);
32
+ // #!/usr/bin/env babel-node
33
+ // -*- coding: utf-8 -*-
34
+ /** @module require *//* !
35
+ region header
36
+ [Project page](https://torben.website/clientnode)
37
+
38
+ Copyright Torben Sickert (info["~at~"]torben.website) 16.12.2012
39
+
40
+ License
41
+ -------
42
+
43
+ This library written by Torben Sickert stands under a creative commons
44
+ naming 3.0 unported license.
45
+ See https://creativecommons.org/licenses/by/3.0/deed.de
46
+ endregion
47
+ */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):(e.__proto__=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 require function available at runtime.
48
+ var currentRequire=typeof globalContext.require==="undefined"?null:globalContext.require;var optionalRequire=function optionalRequire(id){try{return currentRequire?currentRequire(id):null}catch(_unused){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
49
+ }catch(error){throw error}finally{restoreRequireCache(requireFunction.cache,backup)}};// Make preprocessed import function available at runtime.
50
+ var isImportSyntaxSupported=function isImportSyntaxSupported(){try{new Function("import(\"data:text/javascript,\")");return true}catch(_unused2){return false}};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=4;break;case 3:_t=Promise.resolve(null);case 4:return _context.a(2,_t);case 5:_context.p=5;_t2=_context.v;return _context.a(2,Promise.resolve(null))}},_callee,null,[[1,5]])}));function optionalImport(_x,_x2){return _optionalImport.apply(this,arguments)}return optionalImport}();
51
+
52
+ /***/ }),
53
+ /* 3 */,
54
+ /* 4 */
55
+ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
56
+
57
+ "use strict";
58
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
59
+ /* harmony export */ isFunction: function() { return /* binding */ isFunction; }
60
+ /* harmony export */ });
61
+ /* unused harmony exports isNumeric, isWindow, isArrayLike, isAnyMatching, isObject, isPlainObject, isSet, isMap, isProxy */
62
+ /* unused harmony import specifier */ var PLAIN_OBJECT_PROTOTYPES;
63
+ /* unused harmony import specifier */ var determineType;
64
+ /* harmony import */ var core_js_modules_es_array_includes_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0);
65
+ /* harmony import */ var core_js_modules_es_array_includes_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_includes_js__WEBPACK_IMPORTED_MODULE_0__);
1
66
  // #!/usr/bin/env babel-node
2
67
  // -*- coding: utf-8 -*-
3
- /** @module utility */
4
- 'use strict';
68
+ /** @module indicators *//* !
69
+ region header
70
+ [Project page](https://torben.website/clientnode)
71
+
72
+ Copyright Torben Sickert (info["~at~"]torben.website) 16.12.2012
73
+
74
+ License
75
+ -------
5
76
 
6
- /* !
77
+ This library written by Torben Sickert stands under a creative commons
78
+ naming 3.0 unported license.
79
+ See https://creativecommons.org/licenses/by/3.0/deed.de
80
+ endregion
81
+ */function _createForOfIteratorHelper(r,e){var t="undefined"!=typeof Symbol&&r[Symbol.iterator]||r["@@iterator"];if(!t){if(Array.isArray(r)||(t=_unsupportedIterableToArray(r))||e&&r&&"number"==typeof r.length){t&&(r=t);var _n=0,F=function F(){};return{s:F,n:function n(){return _n>=r.length?{done:!0}:{done:!1,value:r[_n++]}},e:function e(r){throw r},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 o,a=!0,u=!1;return{s:function s(){t=t.call(r)},n:function n(){var r=t.next();return a=r.done,r},e:function e(r){u=!0,o=r},f:function f(){try{a||null==t.return||t.return()}finally{if(u)throw o}}}}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 _typeof(o){"@babel/helpers - typeof";return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(o){return typeof o}:function(o){return o&&"function"==typeof Symbol&&o.constructor===Symbol&&o!==Symbol.prototype?"symbol":typeof o},_typeof(o)}/**
82
+ * Determines whether its argument represents a JavaScript number.
83
+ * @param value - Value to analyze.
84
+ * @returns A boolean value indicating whether given object is numeric
85
+ * like.
86
+ */var isNumeric=function isNumeric(value){var type=determineType(value);/*
87
+ NOTE: "parseFloat" "NaNs" numeric-cast false positives ("") but
88
+ misinterprets leading-number strings, particularly hex literals
89
+ ("0x...") subtraction forces infinities to NaN.
90
+ */return["number","string"].includes(type)&&!isNaN(value-parseFloat(value))};/**
91
+ * Determine whether the argument is a window.
92
+ * @param value - Value to check for.
93
+ * @returns Boolean value indicating the result.
94
+ */var isWindow=function isWindow(value){return![null,undefined].includes(value)&&_typeof(value)==="object"&&value===(value===null||value===void 0?void 0:value.window)};/**
95
+ * Checks if given object is similar to an array and can be handled like an
96
+ * array.
97
+ * @param object - Object to check behavior for.
98
+ * @returns A boolean value indicating whether given object is array like.
99
+ */var isArrayLike=function isArrayLike(object){var length;try{length=Boolean(object)&&object.length}catch(_unused){return false}var type=determineType(object);if(type==="function"||isWindow(object))return false;if(type==="array"||length===0)return true;if(typeof length==="number"&&length>0)try{var _dump=object[length-1];return true}catch(_unused2){// Continue regardless of an error.
100
+ }return false};/**
101
+ * Checks whether one of the given pattern matches given string.
102
+ * @param target - Target to check in pattern for.
103
+ * @param pattern - List of pattern to check for.
104
+ * @returns Value "true" if given object is matches by at leas one of the
105
+ * given pattern and "false" otherwise.
106
+ */var isAnyMatching=function isAnyMatching(target,pattern){var _iterator=_createForOfIteratorHelper(pattern),_step;try{for(_iterator.s();!(_step=_iterator.n()).done;){var currentPattern=_step.value;if(typeof currentPattern==="string"){if(currentPattern===target)return true}else if(currentPattern.test(target))return true}}catch(err){_iterator.e(err)}finally{_iterator.f()}return false};/**
107
+ * Checks whether given object is a native object but not null.
108
+ * @param value - Value to check.
109
+ * @returns Value "true" if given object is a plain javaScript object and
110
+ * "false" otherwise.
111
+ */var isObject=function isObject(value){return value!==null&&_typeof(value)==="object"};/**
112
+ * Checks whether given object is a plain native object.
113
+ * @param value - Value to check.
114
+ * @returns Value "true" if given object is a plain javaScript object and
115
+ * "false" otherwise.
116
+ */var isPlainObject=function isPlainObject(value){return isObject(value)&&PLAIN_OBJECT_PROTOTYPES.includes(Object.getPrototypeOf(value))};/**
117
+ * Checks whether given object is a set.
118
+ * @param value - Value to check.
119
+ * @returns Value "true" if given object is a set and "false" otherwise.
120
+ */var isSet=function isSet(value){return determineType(value)==="set"};/**
121
+ * Checks whether given object is a map.
122
+ * @param value - Value to check.
123
+ * @returns Value "true" if given object is a map and "false" otherwise.
124
+ */var isMap=function isMap(value){return determineType(value)==="map"};/**
125
+ * Checks whether given object is a proxy.
126
+ * @param value - Value to check.
127
+ * @returns Value "true" if given object is a proxy and "false" otherwise.
128
+ */var isProxy=function isProxy(value){return Boolean(value.__target__)};/**
129
+ * Checks whether given object is a function.
130
+ * @param value - Value to check.
131
+ * @returns Value "true" if given object is a function and "false"
132
+ * otherwise.
133
+ */var isFunction=function isFunction(value){return Boolean(value)&&["[object AsyncFunction]","[object Function]"].includes({}.toString.call(value))};
134
+
135
+ /***/ }),
136
+ /* 5 */
137
+ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
138
+
139
+ "use strict";
140
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
141
+ /* harmony export */ NOOP: function() { return /* binding */ NOOP; }
142
+ /* harmony export */ });
143
+ /* unused harmony exports globalContext, setGlobalContext, MAXIMAL_NUMBER_OF_ITERATIONS, mockConsole */
144
+ /* unused harmony import specifier */ var CONSOLE_METHODS;
145
+ /* harmony import */ var _require__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
146
+ // #!/usr/bin/env babel-node
147
+ // -*- coding: utf-8 -*-
148
+ /** @module context *//* !
7
149
  region header
8
150
  [Project page](https://torben.website/clientnode)
9
151
 
@@ -16,11 +158,62 @@
16
158
  naming 3.0 unported license.
17
159
  See https://creativecommons.org/licenses/by/3.0/deed.de
18
160
  endregion
19
- */
20
- import { NOOP } from "./context.js";
21
- import { isFunction } from "./indicators.js";
161
+ */var _optionalRequire$defa,_optionalRequire;function _createForOfIteratorHelper(r,e){var t="undefined"!=typeof Symbol&&r[Symbol.iterator]||r["@@iterator"];if(!t){if(Array.isArray(r)||(t=_unsupportedIterableToArray(r))||e&&r&&"number"==typeof r.length){t&&(r=t);var _n=0,F=function F(){};return{s:F,n:function n(){return _n>=r.length?{done:!0}:{done:!1,value:r[_n++]}},e:function e(r){throw r},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 o,a=!0,u=!1;return{s:function s(){t=t.call(r)},n:function n(){var r=t.next();return a=r.done,r},e:function e(r){u=!0,o=r},f:function f(){try{a||null==t.return||t.return()}finally{if(u)throw o}}}}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}var globalContext=(0,_require__WEBPACK_IMPORTED_MODULE_0__.determineGlobalContext)();var setGlobalContext=function setGlobalContext(context){globalContext=context};globalContext.fetch=globalContext.fetch?globalContext.fetch.bind(globalContext):(_optionalRequire$defa=(_optionalRequire=(0,_require__WEBPACK_IMPORTED_MODULE_0__.optionalRequire)("node-fetch"))===null||_optionalRequire===void 0?void 0:_optionalRequire.default)!==null&&_optionalRequire$defa!==void 0?_optionalRequire$defa:function(){for(var _len=arguments.length,parameters=new Array(_len),_key=0;_key<_len;_key++){parameters[_key]=arguments[_key]}return (0,_require__WEBPACK_IMPORTED_MODULE_0__.optionalImport)(/* webpackIgnore: true */"node-fetch").then(function(module){var _ref;return(_ref=module).default.apply(_ref,parameters)})};var MAXIMAL_NUMBER_OF_ITERATIONS=(/* unused pure expression or super */ null && ({value:100}));// A no-op dummy function.
162
+ var NOOP=function NOOP(){// Do nothing.
163
+ };var mockConsole=function mockConsole(){// Avoid errors in browsers that lack a console.
164
+ if(!Object.prototype.hasOwnProperty.call(globalContext,"console"))globalContext.console={};if(!globalContext.console)globalContext.console={};var _iterator=_createForOfIteratorHelper(CONSOLE_METHODS),_step;try{for(_iterator.s();!(_step=_iterator.n()).done;){var methodName=_step.value;if(!(methodName in globalContext.console))globalContext.console[methodName]=NOOP}}catch(err){_iterator.e(err)}finally{_iterator.f()}};
165
+
166
+ /***/ }),
167
+ /* 6 */
168
+ /***/ (function(module) {
169
+
170
+ function webpackEmptyContext(req) {
171
+ var e = new Error("Cannot find module '" + req + "'");
172
+ e.code = 'MODULE_NOT_FOUND';
173
+ throw e;
174
+ }
175
+ webpackEmptyContext.keys = function() { return []; };
176
+ webpackEmptyContext.resolve = webpackEmptyContext;
177
+ webpackEmptyContext.id = 6;
178
+ module.exports = webpackEmptyContext;
179
+
180
+ /***/ }),
181
+ /* 7 */,
182
+ /* 8 */,
183
+ /* 9 */,
184
+ /* 10 */,
185
+ /* 11 */,
186
+ /* 12 */,
187
+ /* 13 */
188
+ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
189
+
190
+ "use strict";
191
+ __webpack_require__.r(__webpack_exports__);
192
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
193
+ /* harmony export */ debounce: function() { return /* binding */ debounce; },
194
+ /* harmony export */ preventDefault: function() { return /* binding */ preventDefault; },
195
+ /* harmony export */ stopPropagation: function() { return /* binding */ stopPropagation; },
196
+ /* harmony export */ timeout: function() { return /* binding */ timeout; },
197
+ /* harmony export */ trailingThrottle: function() { return /* binding */ trailingThrottle; }
198
+ /* harmony export */ });
199
+ /* harmony import */ var _context__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5);
200
+ /* harmony import */ var _indicators__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(4);
201
+ // #!/usr/bin/env babel-node
202
+ // -*- coding: utf-8 -*-
203
+ /** @module utility *//* !
204
+ region header
205
+ [Project page](https://torben.website/clientnode)
22
206
 
23
- /**
207
+ Copyright Torben Sickert (info["~at~"]torben.website) 16.12.2012
208
+
209
+ License
210
+ -------
211
+
212
+ This library written by Torben Sickert stands under a creative commons
213
+ naming 3.0 unported license.
214
+ See https://creativecommons.org/licenses/by/3.0/deed.de
215
+ endregion
216
+ */function _toConsumableArray(r){return _arrayWithoutHoles(r)||_iterableToArray(r)||_unsupportedIterableToArray(r)||_nonIterableSpread()}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.")}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 _iterableToArray(r){if("undefined"!=typeof Symbol&&null!=r[Symbol.iterator]||null!=r["@@iterator"])return Array.from(r)}function _arrayWithoutHoles(r){if(Array.isArray(r))return _arrayLikeToArray(r)}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}/**
24
217
  * Prevents event functions from triggering too often by defining a minimal
25
218
  * span between each function call. Additional arguments given to this function
26
219
  * will be forwarded to the given event function call.
@@ -30,23 +223,8 @@ import { isFunction } from "./indicators.js";
30
223
  * @param additionalArguments - Additional arguments to forward to given
31
224
  * function.
32
225
  * @returns Returns the wrapped method.
33
- */
34
- export const trailingThrottle = (callback, thresholdInMilliseconds = 600, ...additionalArguments) => {
35
- let timeoutID = null;
36
- let recentParameters = [];
37
- return (...parameters) => {
38
- recentParameters = parameters;
39
- if (timeoutID) return;
40
- timeoutID = setTimeout(() => {
41
- callback(...recentParameters, ...additionalArguments);
42
-
43
- // Reset for next cycle.
44
- timeoutID = null;
45
- recentParameters = [];
46
- }, thresholdInMilliseconds);
47
- };
48
- };
49
- /**
226
+ */var trailingThrottle=function trailingThrottle(callback,thresholdInMilliseconds){if(thresholdInMilliseconds===void 0){thresholdInMilliseconds=600}for(var _len=arguments.length,additionalArguments=new Array(_len>2?_len-2:0),_key=2;_key<_len;_key++){additionalArguments[_key-2]=arguments[_key]}var timeoutID=null;var recentParameters=[];return function(){for(var _len2=arguments.length,parameters=new Array(_len2),_key2=0;_key2<_len2;_key2++){parameters[_key2]=arguments[_key2]}recentParameters=parameters;if(timeoutID)return;timeoutID=setTimeout(function(){callback.apply(void 0,_toConsumableArray(recentParameters).concat(additionalArguments));// Reset for next cycle.
227
+ timeoutID=null;recentParameters=[]},thresholdInMilliseconds)}};/**
50
228
  * Prevents event functions from triggering too close after each trigger by
51
229
  * defining a minimal span between each function call. Additional arguments
52
230
  * given to this function will be forwarded to the given event function call.
@@ -56,26 +234,7 @@ export const trailingThrottle = (callback, thresholdInMilliseconds = 600, ...add
56
234
  * @param additionalArguments - Additional arguments to forward to given
57
235
  * function.
58
236
  * @returns Returns the wrapped method.
59
- */
60
- export const debounce = (callback, thresholdInMilliseconds = 600, ...additionalArguments) => {
61
- let timeoutPromise;
62
- let nextResultPromiseResolver;
63
- let nextResultPromise = new Promise(resolve => {
64
- nextResultPromiseResolver = resolve;
65
- });
66
- return (...parameters) => {
67
- parameters = parameters.concat(additionalArguments);
68
- timeoutPromise?.clear();
69
- timeoutPromise = timeout(() => {
70
- nextResultPromiseResolver(callback(...parameters));
71
- nextResultPromise = new Promise(resolve => {
72
- nextResultPromiseResolver = resolve;
73
- });
74
- }, thresholdInMilliseconds);
75
- return nextResultPromise;
76
- };
77
- };
78
- /**
237
+ */var debounce=function debounce(callback,thresholdInMilliseconds){if(thresholdInMilliseconds===void 0){thresholdInMilliseconds=600}for(var _len3=arguments.length,additionalArguments=new Array(_len3>2?_len3-2:0),_key3=2;_key3<_len3;_key3++){additionalArguments[_key3-2]=arguments[_key3]}var timeoutPromise;var nextResultPromiseResolver;var nextResultPromise=new Promise(function(resolve){nextResultPromiseResolver=resolve});return function(){var _timeoutPromise;for(var _len4=arguments.length,parameters=new Array(_len4),_key4=0;_key4<_len4;_key4++){parameters[_key4]=arguments[_key4]}parameters=parameters.concat(additionalArguments);(_timeoutPromise=timeoutPromise)===null||_timeoutPromise===void 0||_timeoutPromise.clear();timeoutPromise=timeout(function(){nextResultPromiseResolver(callback.apply(void 0,_toConsumableArray(parameters)));nextResultPromise=new Promise(function(resolve){nextResultPromiseResolver=resolve})},thresholdInMilliseconds);return nextResultPromise}};/**
79
238
  * Triggers given callback after given duration. Supports unlimited
80
239
  * duration length and returns a promise which will be resolved after given
81
240
  * duration has been passed.
@@ -90,50 +249,135 @@ export const debounce = (callback, thresholdInMilliseconds = 600, ...additionalA
90
249
  * value "true" is within one of the first three parameters. The promise
91
250
  * holds a boolean indicating whether timeout has been canceled or
92
251
  * resolved.
93
- */
94
- export const timeout = (...parameters) => {
95
- let callback = NOOP;
96
- let delayInMilliseconds = 0;
97
- let throwOnTimeoutClear = false;
98
- for (const value of parameters) if (typeof value === 'number' && !isNaN(value)) delayInMilliseconds = value;else if (typeof value === 'boolean') throwOnTimeoutClear = value;else if (isFunction(value)) callback = value;
99
- let rejectCallback;
100
- let resolveCallback;
101
- const result = new Promise((resolve, reject) => {
102
- rejectCallback = reject;
103
- resolveCallback = resolve;
104
- });
105
- const wrappedCallback = () => {
106
- callback.call(result, ...parameters);
107
- resolveCallback(false);
108
- };
109
- const maximumTimeoutDelayInMilliseconds = 2147483647;
110
- if (delayInMilliseconds <= maximumTimeoutDelayInMilliseconds) result.timeoutID = setTimeout(wrappedCallback, delayInMilliseconds);else {
111
- /*
112
- Determine the number of times we need to delay by maximum
113
- possible timeout duration.
114
- */
115
- let numberOfRemainingTimeouts = Math.floor(delayInMilliseconds / maximumTimeoutDelayInMilliseconds);
116
- const finalTimeoutDuration = delayInMilliseconds % maximumTimeoutDelayInMilliseconds;
117
- const delay = () => {
118
- if (numberOfRemainingTimeouts > 0) {
119
- numberOfRemainingTimeouts -= 1;
120
- result.timeoutID = setTimeout(delay, maximumTimeoutDelayInMilliseconds);
121
- } else result.timeoutID = setTimeout(wrappedCallback, finalTimeoutDuration);
122
- };
123
- delay();
124
- }
125
- result.clear = () => {
126
- if (Object.prototype.hasOwnProperty.call(result, 'timeoutID')) {
127
- clearTimeout(result.timeoutID);
128
- (throwOnTimeoutClear ? rejectCallback : resolveCallback)(true);
129
- }
130
- };
131
- return result;
132
- };
133
- export const preventDefault = event => {
134
- event.preventDefault();
135
- };
136
- export const stopPropagation = event => {
137
- event.stopPropagation();
138
- };
139
- //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiLi4vc3JjL3V0aWxpdHkudHMiXSwic291cmNlc0NvbnRlbnQiOlsiLy8gIyEvdXNyL2Jpbi9lbnYgYmFiZWwtbm9kZVxuLy8gLSotIGNvZGluZzogdXRmLTggLSotXG4vKiogQG1vZHVsZSB1dGlsaXR5ICovXG4ndXNlIHN0cmljdCdcbi8qICFcbiAgICByZWdpb24gaGVhZGVyXG4gICAgW1Byb2plY3QgcGFnZV0oaHR0cHM6Ly90b3JiZW4ud2Vic2l0ZS9jbGllbnRub2RlKVxuXG4gICAgQ29weXJpZ2h0IFRvcmJlbiBTaWNrZXJ0IChpbmZvW1wifmF0flwiXXRvcmJlbi53ZWJzaXRlKSAxNi4xMi4yMDEyXG5cbiAgICBMaWNlbnNlXG4gICAgLS0tLS0tLVxuXG4gICAgVGhpcyBsaWJyYXJ5IHdyaXR0ZW4gYnkgVG9yYmVuIFNpY2tlcnQgc3RhbmRzIHVuZGVyIGEgY3JlYXRpdmUgY29tbW9uc1xuICAgIG5hbWluZyAzLjAgdW5wb3J0ZWQgbGljZW5zZS5cbiAgICBTZWUgaHR0cHM6Ly9jcmVhdGl2ZWNvbW1vbnMub3JnL2xpY2Vuc2VzL2J5LzMuMC9kZWVkLmRlXG4gICAgZW5kcmVnaW9uXG4qL1xuaW1wb3J0IHR5cGUge0FueUZ1bmN0aW9uLCBQcm9jZWR1cmVGdW5jdGlvbiwgVGltZW91dFByb21pc2V9IGZyb20gJy4vdHlwZSdcblxuaW1wb3J0IHtOT09QfSBmcm9tICcuL2NvbnRleHQnXG5pbXBvcnQge2lzRnVuY3Rpb259IGZyb20gJy4vaW5kaWNhdG9ycydcblxuLyoqXG4gKiBQcmV2ZW50cyBldmVudCBmdW5jdGlvbnMgZnJvbSB0cmlnZ2VyaW5nIHRvbyBvZnRlbiBieSBkZWZpbmluZyBhIG1pbmltYWxcbiAqIHNwYW4gYmV0d2VlbiBlYWNoIGZ1bmN0aW9uIGNhbGwuIEFkZGl0aW9uYWwgYXJndW1lbnRzIGdpdmVuIHRvIHRoaXMgZnVuY3Rpb25cbiAqIHdpbGwgYmUgZm9yd2FyZGVkIHRvIHRoZSBnaXZlbiBldmVudCBmdW5jdGlvbiBjYWxsLlxuICogQHBhcmFtIGNhbGxiYWNrIC0gVGhlIGZ1bmN0aW9uIHRvIGNhbGwgZGVib3VuY2VkLlxuICogQHBhcmFtIHRocmVzaG9sZEluTWlsbGlzZWNvbmRzIC0gVGhlIG1pbmltdW0gdGltZSBzcGFuIGJldHdlZW4gZWFjaFxuICogZnVuY3Rpb24gY2FsbC5cbiAqIEBwYXJhbSBhZGRpdGlvbmFsQXJndW1lbnRzIC0gQWRkaXRpb25hbCBhcmd1bWVudHMgdG8gZm9yd2FyZCB0byBnaXZlblxuICogZnVuY3Rpb24uXG4gKiBAcmV0dXJucyBSZXR1cm5zIHRoZSB3cmFwcGVkIG1ldGhvZC5cbiAqL1xuZXhwb3J0IGNvbnN0IHRyYWlsaW5nVGhyb3R0bGUgPSA8VCA9IHVua25vd24+KFxuICAgIGNhbGxiYWNrOiAoLi4ucGFyYW1ldGVyczogQXJyYXk8dW5rbm93bj4pID0+IFQsXG4gICAgdGhyZXNob2xkSW5NaWxsaXNlY29uZHMgPSA2MDAsXG4gICAgLi4uYWRkaXRpb25hbEFyZ3VtZW50czogQXJyYXk8dW5rbm93bj5cbikgPT4ge1xuICAgIGxldCB0aW1lb3V0SUQ6IE5vZGVKUy5UaW1lb3V0IHwgbnVsbCA9IG51bGxcbiAgICBsZXQgcmVjZW50UGFyYW1ldGVyczogQXJyYXk8dW5rbm93bj4gPSBbXVxuXG4gICAgcmV0dXJuICguLi5wYXJhbWV0ZXJzOiBBcnJheTx1bmtub3duPikgPT4ge1xuICAgICAgICByZWNlbnRQYXJhbWV0ZXJzID0gcGFyYW1ldGVyc1xuXG4gICAgICAgIGlmICh0aW1lb3V0SUQpXG4gICAgICAgICAgICByZXR1cm5cblxuICAgICAgICB0aW1lb3V0SUQgPSBzZXRUaW1lb3V0KFxuICAgICAgICAgICAgKCkgPT4ge1xuICAgICAgICAgICAgICAgIGNhbGxiYWNrKC4uLnJlY2VudFBhcmFtZXRlcnMsIC4uLmFkZGl0aW9uYWxBcmd1bWVudHMpXG5cbiAgICAgICAgICAgICAgICAvLyBSZXNldCBmb3IgbmV4dCBjeWNsZS5cbiAgICAgICAgICAgICAgICB0aW1lb3V0SUQgPSBudWxsXG4gICAgICAgICAgICAgICAgcmVjZW50UGFyYW1ldGVycyA9IFtdXG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAgdGhyZXNob2xkSW5NaWxsaXNlY29uZHNcbiAgICAgICAgKVxuICAgIH1cbn1cbi8qKlxuICogUHJldmVudHMgZXZlbnQgZnVuY3Rpb25zIGZyb20gdHJpZ2dlcmluZyB0b28gY2xvc2UgYWZ0ZXIgZWFjaCB0cmlnZ2VyIGJ5XG4gKiBkZWZpbmluZyBhIG1pbmltYWwgc3BhbiBiZXR3ZWVuIGVhY2ggZnVuY3Rpb24gY2FsbC4gQWRkaXRpb25hbCBhcmd1bWVudHNcbiAqIGdpdmVuIHRvIHRoaXMgZnVuY3Rpb24gd2lsbCBiZSBmb3J3YXJkZWQgdG8gdGhlIGdpdmVuIGV2ZW50IGZ1bmN0aW9uIGNhbGwuXG4gKiBAcGFyYW0gY2FsbGJhY2sgLSBUaGUgZnVuY3Rpb24gdG8gY2FsbCBkZWJvdW5jZWQuXG4gKiBAcGFyYW0gdGhyZXNob2xkSW5NaWxsaXNlY29uZHMgLSBUaGUgbWluaW11bSB0aW1lIHNwYW4gYmV0d2VlbiBlYWNoXG4gKiBmdW5jdGlvbiBjYWxsLlxuICogQHBhcmFtIGFkZGl0aW9uYWxBcmd1bWVudHMgLSBBZGRpdGlvbmFsIGFyZ3VtZW50cyB0byBmb3J3YXJkIHRvIGdpdmVuXG4gKiBmdW5jdGlvbi5cbiAqIEByZXR1cm5zIFJldHVybnMgdGhlIHdyYXBwZWQgbWV0aG9kLlxuICovXG5leHBvcnQgY29uc3QgZGVib3VuY2UgPSA8VCA9IHVua25vd24+KFxuICAgIGNhbGxiYWNrOiAoLi4ucGFyYW1ldGVyczogQXJyYXk8dW5rbm93bj4pID0+IFQsXG4gICAgdGhyZXNob2xkSW5NaWxsaXNlY29uZHMgPSA2MDAsXG4gICAgLi4uYWRkaXRpb25hbEFyZ3VtZW50czogQXJyYXk8dW5rbm93bj5cbik6ICgoLi4ucGFyYW1ldGVyczogQXJyYXk8dW5rbm93bj4pID0+IFByb21pc2U8VD4pID0+IHtcbiAgICBsZXQgdGltZW91dFByb21pc2U6IFRpbWVvdXRQcm9taXNlIHwgdW5kZWZpbmVkXG5cbiAgICBsZXQgbmV4dFJlc3VsdFByb21pc2VSZXNvbHZlcjogKHZhbHVlOiBUKSA9PiB2b2lkXG4gICAgbGV0IG5leHRSZXN1bHRQcm9taXNlID0gbmV3IFByb21pc2U8VD4oKHJlc29sdmUpID0+IHtcbiAgICAgICAgbmV4dFJlc3VsdFByb21pc2VSZXNvbHZlciA9IHJlc29sdmVcbiAgICB9KVxuXG4gICAgcmV0dXJuICguLi5wYXJhbWV0ZXJzOiBBcnJheTx1bmtub3duPikgPT4ge1xuICAgICAgICBwYXJhbWV0ZXJzID0gcGFyYW1ldGVycy5jb25jYXQoYWRkaXRpb25hbEFyZ3VtZW50cylcblxuICAgICAgICB0aW1lb3V0UHJvbWlzZT8uY2xlYXIoKVxuXG4gICAgICAgIHRpbWVvdXRQcm9taXNlID0gdGltZW91dChcbiAgICAgICAgICAgICgpID0+IHtcbiAgICAgICAgICAgICAgICBuZXh0UmVzdWx0UHJvbWlzZVJlc29sdmVyKGNhbGxiYWNrKC4uLnBhcmFtZXRlcnMpKVxuXG4gICAgICAgICAgICAgICAgbmV4dFJlc3VsdFByb21pc2UgPSBuZXcgUHJvbWlzZTxUPigocmVzb2x2ZSkgPT4ge1xuICAgICAgICAgICAgICAgICAgICBuZXh0UmVzdWx0UHJvbWlzZVJlc29sdmVyID0gcmVzb2x2ZVxuICAgICAgICAgICAgICAgIH0pXG4gICAgICAgICAgICB9LFxuICAgICAgICAgICAgdGhyZXNob2xkSW5NaWxsaXNlY29uZHNcbiAgICAgICAgKVxuXG4gICAgICAgIHJldHVybiBuZXh0UmVzdWx0UHJvbWlzZVxuICAgIH1cbn1cbi8qKlxuICogVHJpZ2dlcnMgZ2l2ZW4gY2FsbGJhY2sgYWZ0ZXIgZ2l2ZW4gZHVyYXRpb24uIFN1cHBvcnRzIHVubGltaXRlZFxuICogZHVyYXRpb24gbGVuZ3RoIGFuZCByZXR1cm5zIGEgcHJvbWlzZSB3aGljaCB3aWxsIGJlIHJlc29sdmVkIGFmdGVyIGdpdmVuXG4gKiBkdXJhdGlvbiBoYXMgYmVlbiBwYXNzZWQuXG4gKiBAcGFyYW0gcGFyYW1ldGVycyAtIE9ic2VydmVzIHRoZSBmaXJzdCB0aHJlZSBleGlzdGluZyBwYXJhbWV0ZXJzLiBJZiBvbmVcbiAqIGlzIGEgbnVtYmVyIGl0IHdpbGwgYmUgaW50ZXJwcmV0ZWQgYXMgZGVsYXkgaW4gbWlsbGlzZWNvbmRzIHVudGlsIGdpdmVuXG4gKiBjYWxsYmFjayB3aWxsIGJlIHRyaWdnZXJlZC4gSWYgb25lIGlzIG9mIHR5cGUgZnVuY3Rpb24gaXQgd2lsbCBiZSB1c2VkXG4gKiBhcyBjYWxsYmFjayBhbmQgaWYgb25lIGlzIG9mIHR5cGUgYm9vbGVhbiBpdCB3aWxsIGluZGljYXRlIGlmIHJldHVybmluZ1xuICogcHJvbWlzZSBzaG91bGQgYmUgcmVqZWN0ZWQgb3IgcmVzb2x2ZWQgaWYgZ2l2ZW4gaW50ZXJuYWxseSBjcmVhdGVkXG4gKiB0aW1lb3V0IHNob3VsZCBiZSBjYW5jZWxlZC4gQWRkaXRpb25hbCBwYXJhbWV0ZXJzIHdpbGwgYmUgZm9yd2FyZGVkIHRvXG4gKiBnaXZlbiBjYWxsYmFjay5cbiAqIEByZXR1cm5zIEEgcHJvbWlzZSByZXNvbHZpbmcgYWZ0ZXIgZ2l2ZW4gZGVsYXkgb3IgYmVpbmcgcmVqZWN0ZWQgaWZcbiAqIHZhbHVlIFwidHJ1ZVwiIGlzIHdpdGhpbiBvbmUgb2YgdGhlIGZpcnN0IHRocmVlIHBhcmFtZXRlcnMuIFRoZSBwcm9taXNlXG4gKiBob2xkcyBhIGJvb2xlYW4gaW5kaWNhdGluZyB3aGV0aGVyIHRpbWVvdXQgaGFzIGJlZW4gY2FuY2VsZWQgb3JcbiAqIHJlc29sdmVkLlxuICovXG5leHBvcnQgY29uc3QgdGltZW91dCA9ICguLi5wYXJhbWV0ZXJzOiBBcnJheTx1bmtub3duPik6IFRpbWVvdXRQcm9taXNlID0+IHtcbiAgICBsZXQgY2FsbGJhY2s6IEFueUZ1bmN0aW9uID0gTk9PUFxuICAgIGxldCBkZWxheUluTWlsbGlzZWNvbmRzID0gMFxuICAgIGxldCB0aHJvd09uVGltZW91dENsZWFyID0gZmFsc2VcblxuICAgIGZvciAoY29uc3QgdmFsdWUgb2YgcGFyYW1ldGVycylcbiAgICAgICAgaWYgKHR5cGVvZiB2YWx1ZSA9PT0gJ251bWJlcicgJiYgIWlzTmFOKHZhbHVlKSlcbiAgICAgICAgICAgIGRlbGF5SW5NaWxsaXNlY29uZHMgPSB2YWx1ZVxuICAgICAgICBlbHNlIGlmICh0eXBlb2YgdmFsdWUgPT09ICdib29sZWFuJylcbiAgICAgICAgICAgIHRocm93T25UaW1lb3V0Q2xlYXIgPSB2YWx1ZVxuICAgICAgICBlbHNlIGlmIChpc0Z1bmN0aW9uKHZhbHVlKSlcbiAgICAgICAgICAgIGNhbGxiYWNrID0gdmFsdWVcblxuICAgIGxldCByZWplY3RDYWxsYmFjazogKF9yZWFzb246IHRydWUpID0+IHZvaWRcbiAgICBsZXQgcmVzb2x2ZUNhbGxiYWNrOiAoX3ZhbHVlOiBib29sZWFuKSA9PiB2b2lkXG5cbiAgICBjb25zdCByZXN1bHQ6IFRpbWVvdXRQcm9taXNlID0gbmV3IFByb21pc2U8Ym9vbGVhbj4oKFxuICAgICAgICByZXNvbHZlOiAoX3ZhbHVlOiBib29sZWFuKSA9PiB2b2lkLCByZWplY3Q6IChfcmVhc29uOiB0cnVlKSA9PiB2b2lkXG4gICAgKSA9PiB7XG4gICAgICAgIHJlamVjdENhbGxiYWNrID0gcmVqZWN0XG4gICAgICAgIHJlc29sdmVDYWxsYmFjayA9IHJlc29sdmVcbiAgICB9KSBhcyBUaW1lb3V0UHJvbWlzZVxuXG4gICAgY29uc3Qgd3JhcHBlZENhbGxiYWNrOiBQcm9jZWR1cmVGdW5jdGlvbiA9ICgpID0+IHtcbiAgICAgICAgY2FsbGJhY2suY2FsbChyZXN1bHQsIC4uLnBhcmFtZXRlcnMpXG4gICAgICAgIHJlc29sdmVDYWxsYmFjayhmYWxzZSlcbiAgICB9XG4gICAgY29uc3QgbWF4aW11bVRpbWVvdXREZWxheUluTWlsbGlzZWNvbmRzID0gMjE0NzQ4MzY0N1xuXG4gICAgaWYgKGRlbGF5SW5NaWxsaXNlY29uZHMgPD0gbWF4aW11bVRpbWVvdXREZWxheUluTWlsbGlzZWNvbmRzKVxuICAgICAgICByZXN1bHQudGltZW91dElEID0gc2V0VGltZW91dCh3cmFwcGVkQ2FsbGJhY2ssIGRlbGF5SW5NaWxsaXNlY29uZHMpXG4gICAgZWxzZSB7XG4gICAgICAgIC8qXG4gICAgICAgICAgICBEZXRlcm1pbmUgdGhlIG51bWJlciBvZiB0aW1lcyB3ZSBuZWVkIHRvIGRlbGF5IGJ5IG1heGltdW1cbiAgICAgICAgICAgIHBvc3NpYmxlIHRpbWVvdXQgZHVyYXRpb24uXG4gICAgICAgICovXG4gICAgICAgIGxldCBudW1iZXJPZlJlbWFpbmluZ1RpbWVvdXRzOiBudW1iZXIgPSBNYXRoLmZsb29yKFxuICAgICAgICAgICAgZGVsYXlJbk1pbGxpc2Vjb25kcyAvIG1heGltdW1UaW1lb3V0RGVsYXlJbk1pbGxpc2Vjb25kc1xuICAgICAgICApXG4gICAgICAgIGNvbnN0IGZpbmFsVGltZW91dER1cmF0aW9uOiBudW1iZXIgPVxuICAgICAgICAgICAgZGVsYXlJbk1pbGxpc2Vjb25kcyAlIG1heGltdW1UaW1lb3V0RGVsYXlJbk1pbGxpc2Vjb25kc1xuXG4gICAgICAgIGNvbnN0IGRlbGF5ID0gKCkgPT4ge1xuICAgICAgICAgICAgaWYgKG51bWJlck9mUmVtYWluaW5nVGltZW91dHMgPiAwKSB7XG4gICAgICAgICAgICAgICAgbnVtYmVyT2ZSZW1haW5pbmdUaW1lb3V0cyAtPSAxXG5cbiAgICAgICAgICAgICAgICByZXN1bHQudGltZW91dElEID1cbiAgICAgICAgICAgICAgICAgICAgc2V0VGltZW91dChkZWxheSwgbWF4aW11bVRpbWVvdXREZWxheUluTWlsbGlzZWNvbmRzKVxuICAgICAgICAgICAgfSBlbHNlXG4gICAgICAgICAgICAgICAgcmVzdWx0LnRpbWVvdXRJRCA9XG4gICAgICAgICAgICAgICAgICAgIHNldFRpbWVvdXQod3JhcHBlZENhbGxiYWNrLCBmaW5hbFRpbWVvdXREdXJhdGlvbilcbiAgICAgICAgfVxuICAgICAgICBkZWxheSgpXG4gICAgfVxuXG4gICAgcmVzdWx0LmNsZWFyID0gKCkgPT4ge1xuICAgICAgICBpZiAoT2JqZWN0LnByb3RvdHlwZS5oYXNPd25Qcm9wZXJ0eS5jYWxsKHJlc3VsdCwgJ3RpbWVvdXRJRCcpKSB7XG4gICAgICAgICAgICBjbGVhclRpbWVvdXQocmVzdWx0LnRpbWVvdXRJRClcbiAgICAgICAgICAgIDsodGhyb3dPblRpbWVvdXRDbGVhciA/IHJlamVjdENhbGxiYWNrIDogcmVzb2x2ZUNhbGxiYWNrKSh0cnVlKVxuICAgICAgICB9XG4gICAgfVxuXG4gICAgcmV0dXJuIHJlc3VsdFxufVxuZXhwb3J0IGNvbnN0IHByZXZlbnREZWZhdWx0ID0gKGV2ZW50OiBFdmVudCkgPT4ge1xuICAgIGV2ZW50LnByZXZlbnREZWZhdWx0KClcbn1cbmV4cG9ydCBjb25zdCBzdG9wUHJvcGFnYXRpb24gPSAoZXZlbnQ6IEV2ZW50KSA9PiB7XG4gICAgZXZlbnQuc3RvcFByb3BhZ2F0aW9uKClcbn1cbiJdLCJtYXBwaW5ncyI6IkFBQUE7QUFDQTtBQUNBO0FBQ0EsWUFBWTs7QUFDWjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBR0EsU0FBUSxJQUFJO0FBQ1osU0FBUSxVQUFVOztBQUVsQjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsT0FBTyxNQUFNLGdCQUFnQixHQUFHLENBQzVCLFFBQThDLEVBQzlDLHVCQUF1QixHQUFHLEdBQUcsRUFDN0IsR0FBRyxtQkFBbUMsS0FDckM7RUFDRCxJQUFJLFNBQWdDLEdBQUcsSUFBSTtFQUMzQyxJQUFJLGdCQUFnQyxHQUFHLEVBQUU7RUFFekMsT0FBTyxDQUFDLEdBQUcsVUFBMEIsS0FBSztJQUN0QyxnQkFBZ0IsR0FBRyxVQUFVO0lBRTdCLElBQUksU0FBUyxFQUNUO0lBRUosU0FBUyxHQUFHLFVBQVUsQ0FDbEIsTUFBTTtNQUNGLFFBQVEsQ0FBQyxHQUFHLGdCQUFnQixF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
252
+ */var timeout=function timeout(){for(var _len5=arguments.length,parameters=new Array(_len5),_key5=0;_key5<_len5;_key5++){parameters[_key5]=arguments[_key5]}var callback=_context__WEBPACK_IMPORTED_MODULE_0__.NOOP;var delayInMilliseconds=0;var throwOnTimeoutClear=false;for(var _i=0,_parameters=parameters;_i<_parameters.length;_i++){var value=_parameters[_i];if(typeof value==="number"&&!isNaN(value))delayInMilliseconds=value;else if(typeof value==="boolean")throwOnTimeoutClear=value;else if((0,_indicators__WEBPACK_IMPORTED_MODULE_1__.isFunction)(value))callback=value}var rejectCallback;var resolveCallback;var result=new Promise(function(resolve,reject){rejectCallback=reject;resolveCallback=resolve});var wrappedCallback=function wrappedCallback(){var _callback;(_callback=callback).call.apply(_callback,[result].concat(parameters));resolveCallback(false)};var maximumTimeoutDelayInMilliseconds=2147483647;if(delayInMilliseconds<=maximumTimeoutDelayInMilliseconds)result.timeoutID=setTimeout(wrappedCallback,delayInMilliseconds);else{/*
253
+ Determine the number of times we need to delay by maximum
254
+ possible timeout duration.
255
+ */var numberOfRemainingTimeouts=Math.floor(delayInMilliseconds/maximumTimeoutDelayInMilliseconds);var finalTimeoutDuration=delayInMilliseconds%maximumTimeoutDelayInMilliseconds;var _delay=function delay(){if(numberOfRemainingTimeouts>0){numberOfRemainingTimeouts-=1;result.timeoutID=setTimeout(_delay,maximumTimeoutDelayInMilliseconds)}else result.timeoutID=setTimeout(wrappedCallback,finalTimeoutDuration)};_delay()}result.clear=function(){if(Object.prototype.hasOwnProperty.call(result,"timeoutID")){clearTimeout(result.timeoutID);(throwOnTimeoutClear?rejectCallback:resolveCallback)(true)}};return result};var preventDefault=function preventDefault(event){event.preventDefault()};var stopPropagation=function stopPropagation(event){event.stopPropagation()};
256
+
257
+ /***/ })
258
+ /******/ ]);
259
+ /************************************************************************/
260
+ /******/ // The module cache
261
+ /******/ var __webpack_module_cache__ = {};
262
+ /******/
263
+ /******/ // The require function
264
+ /******/ function __webpack_require__(moduleId) {
265
+ /******/ // Check if module is in cache
266
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
267
+ /******/ if (cachedModule !== undefined) {
268
+ /******/ return cachedModule.exports;
269
+ /******/ }
270
+ /******/ // Create a new module (and put it into the cache)
271
+ /******/ var module = __webpack_module_cache__[moduleId] = {
272
+ /******/ id: moduleId,
273
+ /******/ loaded: false,
274
+ /******/ exports: {}
275
+ /******/ };
276
+ /******/
277
+ /******/ // Execute the module function
278
+ /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
279
+ /******/
280
+ /******/ // Flag the module as loaded
281
+ /******/ module.loaded = true;
282
+ /******/
283
+ /******/ // Return the exports of the module
284
+ /******/ return module.exports;
285
+ /******/ }
286
+ /******/
287
+ /******/ // expose the module cache
288
+ /******/ __webpack_require__.c = __webpack_module_cache__;
289
+ /******/
290
+ /************************************************************************/
291
+ /******/ /* webpack/runtime/compat get default export */
292
+ /******/ !function() {
293
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
294
+ /******/ __webpack_require__.n = function(module) {
295
+ /******/ var getter = module && module.__esModule ?
296
+ /******/ function() { return module['default']; } :
297
+ /******/ function() { return module; };
298
+ /******/ __webpack_require__.d(getter, { a: getter });
299
+ /******/ return getter;
300
+ /******/ };
301
+ /******/ }();
302
+ /******/
303
+ /******/ /* webpack/runtime/define property getters */
304
+ /******/ !function() {
305
+ /******/ // define getter/value functions for harmony exports
306
+ /******/ __webpack_require__.d = function(exports, definition) {
307
+ /******/ if(Array.isArray(definition)) {
308
+ /******/ var i = 0;
309
+ /******/ while(i < definition.length) {
310
+ /******/ var key = definition[i++];
311
+ /******/ var binding = definition[i++];
312
+ /******/ if(!__webpack_require__.o(exports, key)) {
313
+ /******/ if(binding === 0) {
314
+ /******/ Object.defineProperty(exports, key, { enumerable: true, value: definition[i++] });
315
+ /******/ } else {
316
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: binding });
317
+ /******/ }
318
+ /******/ } else if(binding === 0) { i++; }
319
+ /******/ }
320
+ /******/ } else {
321
+ /******/ for(var key in definition) {
322
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
323
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
324
+ /******/ }
325
+ /******/ }
326
+ /******/ }
327
+ /******/ };
328
+ /******/ }();
329
+ /******/
330
+ /******/ /* webpack/runtime/global */
331
+ /******/ !function() {
332
+ /******/ __webpack_require__.g = (function() {
333
+ /******/ if (typeof globalThis === 'object') return globalThis;
334
+ /******/ try {
335
+ /******/ return this || new Function('return this')();
336
+ /******/ } catch (e) {
337
+ /******/ if (typeof window === 'object') return window;
338
+ /******/ }
339
+ /******/ })();
340
+ /******/ }();
341
+ /******/
342
+ /******/ /* webpack/runtime/harmony module decorator */
343
+ /******/ !function() {
344
+ /******/ __webpack_require__.hmd = function(module) {
345
+ /******/ module = Object.create(module);
346
+ /******/ if (!module.children) module.children = [];
347
+ /******/ Object.defineProperty(module, 'exports', {
348
+ /******/ enumerable: true,
349
+ /******/ set: function() {
350
+ /******/ throw new Error('ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: ' + module.id);
351
+ /******/ }
352
+ /******/ });
353
+ /******/ return module;
354
+ /******/ };
355
+ /******/ }();
356
+ /******/
357
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
358
+ /******/ !function() {
359
+ /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
360
+ /******/ }();
361
+ /******/
362
+ /******/ /* webpack/runtime/make namespace object */
363
+ /******/ !function() {
364
+ /******/ // define __esModule on exports
365
+ /******/ __webpack_require__.r = function(exports) {
366
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
367
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
368
+ /******/ }
369
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
370
+ /******/ };
371
+ /******/ }();
372
+ /******/
373
+ /************************************************************************/
374
+ /******/
375
+ /******/ // module cache are used so entry inlining is disabled
376
+ /******/ // startup
377
+ /******/ // Load entry module and return exports
378
+ /******/ var __webpack_exports__ = __webpack_require__(13);
379
+ /******/
380
+ /******/ return __webpack_exports__;
381
+ /******/ })()
382
+ ;
383
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clientnode",
3
- "version": "4.0.1430",
3
+ "version": "4.0.1432",
4
4
  "description": "Handy utilities for any JavaScript environments.",
5
5
  "keywords": [
6
6
  "client",
@@ -102,7 +102,7 @@
102
102
  "rimraf": "^6.1.3",
103
103
  "typescript-eslint": "^8.62.1",
104
104
  "web-documentation": "^1.0.42",
105
- "weboptimizer": "^4.0.3",
105
+ "weboptimizer": "^4.0.4",
106
106
  "webpack-dev-server": "^5.2.5"
107
107
  },
108
108
  "peerDependencies": {
@@ -127,7 +127,7 @@
127
127
  "yarn": ">=4"
128
128
  },
129
129
  "resolutions": {
130
- "weboptimizer/clientnode": "4.0.1360",
130
+ "weboptimizer/clientnode": "4.0.1430",
131
131
  "colors": "1.4.0",
132
132
  "globals@npm:^14.0.0": "patch:globals@npm%3A11.12.0#~/.yarn/patches/globals-npm-11.12.0-1fa7f41a6c.patch",
133
133
  "globals@npm:^11.1.0": "patch:globals@npm%3A11.12.0#~/.yarn/patches/globals-npm-11.12.0-1fa7f41a6c.patch",