clientnode 4.0.1503 → 4.0.1504

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 (56) hide show
  1. package/dist/Lock.js +27 -8
  2. package/dist/Logger.js +55 -27
  3. package/dist/Semaphore.js +27 -8
  4. package/dist/array.js +46 -8
  5. package/dist/bundle/index.js +429 -402
  6. package/dist/cli.js +30 -8
  7. package/dist/compatible/Lock.js +27 -8
  8. package/dist/compatible/Logger.js +55 -27
  9. package/dist/compatible/Semaphore.js +27 -8
  10. package/dist/compatible/array.js +46 -8
  11. package/dist/compatible/cli.js +30 -8
  12. package/dist/compatible/constants.js +27 -8
  13. package/dist/compatible/context.js +55 -27
  14. package/dist/compatible/cookie.js +58 -27
  15. package/dist/compatible/data-transfer.js +59 -27
  16. package/dist/compatible/datetime.js +58 -27
  17. package/dist/compatible/domNode.js +59 -27
  18. package/dist/compatible/expression/evaluators.js +50 -27
  19. package/dist/compatible/expression/helper.js +31 -8
  20. package/dist/compatible/expression/index.js +71 -27
  21. package/dist/compatible/expression/indicator-functions.js +42 -8
  22. package/dist/compatible/filesystem.js +55 -27
  23. package/dist/compatible/function.js +32 -8
  24. package/dist/compatible/index.js +66 -34
  25. package/dist/compatible/indicators.js +39 -8
  26. package/dist/compatible/module.js +50 -27
  27. package/dist/compatible/number.js +34 -8
  28. package/dist/compatible/object.js +58 -27
  29. package/dist/compatible/process.js +55 -27
  30. package/dist/compatible/scope.js +108 -34
  31. package/dist/compatible/string.js +61 -27
  32. package/dist/compatible/test-helper.js +33 -8
  33. package/dist/compatible/utility.js +55 -27
  34. package/dist/constants.js +27 -8
  35. package/dist/context.js +55 -27
  36. package/dist/cookie.js +58 -27
  37. package/dist/data-transfer.js +59 -27
  38. package/dist/datetime.js +58 -27
  39. package/dist/domNode.js +59 -27
  40. package/dist/expression/evaluators.js +50 -27
  41. package/dist/expression/helper.js +31 -8
  42. package/dist/expression/index.js +71 -27
  43. package/dist/expression/indicator-functions.js +42 -8
  44. package/dist/filesystem.js +55 -27
  45. package/dist/function.js +32 -8
  46. package/dist/index.js +66 -34
  47. package/dist/indicators.js +39 -8
  48. package/dist/module.js +50 -27
  49. package/dist/number.js +34 -8
  50. package/dist/object.js +58 -27
  51. package/dist/process.js +55 -27
  52. package/dist/scope.js +108 -34
  53. package/dist/string.js +61 -27
  54. package/dist/test-helper.js +33 -8
  55. package/dist/utility.js +55 -27
  56. package/package.json +2 -2
package/dist/Lock.js CHANGED
@@ -3,17 +3,36 @@ if(typeof window==='undefined'||window===null)var window=(typeof globalThis==='u
3
3
  /******/
4
4
  /************************************************************************/
5
5
  /******/ /* webpack/runtime/define property getters */
6
- /******/ // define getter/value functions for harmony exports
7
- /******/ __webpack_require__.d = function(exports, definition) {
8
- /******/ for(var key in definition) {
9
- /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
10
- /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
6
+ /******/ !function() {
7
+ /******/ // define getter/value functions for harmony exports
8
+ /******/ __webpack_require__.d = function(exports, definition) {
9
+ /******/ if(Array.isArray(definition)) {
10
+ /******/ var i = 0;
11
+ /******/ while(i < definition.length) {
12
+ /******/ var key = definition[i++];
13
+ /******/ var binding = definition[i++];
14
+ /******/ if(!__webpack_require__.o(exports, key)) {
15
+ /******/ if(binding === 0) {
16
+ /******/ Object.defineProperty(exports, key, { enumerable: true, value: definition[i++] });
17
+ /******/ } else {
18
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: binding });
19
+ /******/ }
20
+ /******/ } else if(binding === 0) { i++; }
21
+ /******/ }
22
+ /******/ } else {
23
+ /******/ for(var key in definition) {
24
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
25
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
26
+ /******/ }
27
+ /******/ }
11
28
  /******/ }
12
- /******/ }
13
- /******/ };
29
+ /******/ };
30
+ /******/ }();
14
31
  /******/
15
32
  /******/ /* webpack/runtime/hasOwnProperty shorthand */
16
- /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); };
33
+ /******/ !function() {
34
+ /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
35
+ /******/ }();
17
36
  /******/
18
37
  /************************************************************************/
19
38
  var __webpack_exports__ = {};
package/dist/Logger.js CHANGED
@@ -46,6 +46,11 @@ var TRANSITION_END_EVENT_NAMES="transitionend webkitTransitionEnd oTransitionEnd
46
46
  /* 2 */
47
47
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
48
48
 
49
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
50
+ /* harmony export */ I5: function() { return /* binding */ optionalRequire; },
51
+ /* harmony export */ Sw: function() { return /* binding */ optionalImport; },
52
+ /* harmony export */ a8: function() { return /* binding */ determineGlobalContext; }
53
+ /* harmony export */ });
49
54
  /* unused harmony exports isImportSyntaxSupported, currentRequire, setOptionalRequire, getCurrentRequire, clearRequireCache, isolatedRequire */
50
55
  /* module decorator */ module = __webpack_require__.hmd(module);
51
56
  // #!/usr/bin/env babel-node
@@ -645,40 +650,63 @@ var remainingLength=lineLength+LEVELS_COLOR[levelIndex].length+_cli_js__WEBPACK_
645
650
  /******/
646
651
  /************************************************************************/
647
652
  /******/ /* webpack/runtime/define property getters */
648
- /******/ // define getter/value functions for harmony exports
649
- /******/ __webpack_require__.d = function(exports, definition) {
650
- /******/ for(var key in definition) {
651
- /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
652
- /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
653
+ /******/ !function() {
654
+ /******/ // define getter/value functions for harmony exports
655
+ /******/ __webpack_require__.d = function(exports, definition) {
656
+ /******/ if(Array.isArray(definition)) {
657
+ /******/ var i = 0;
658
+ /******/ while(i < definition.length) {
659
+ /******/ var key = definition[i++];
660
+ /******/ var binding = definition[i++];
661
+ /******/ if(!__webpack_require__.o(exports, key)) {
662
+ /******/ if(binding === 0) {
663
+ /******/ Object.defineProperty(exports, key, { enumerable: true, value: definition[i++] });
664
+ /******/ } else {
665
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: binding });
666
+ /******/ }
667
+ /******/ } else if(binding === 0) { i++; }
668
+ /******/ }
669
+ /******/ } else {
670
+ /******/ for(var key in definition) {
671
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
672
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
673
+ /******/ }
674
+ /******/ }
653
675
  /******/ }
654
- /******/ }
655
- /******/ };
676
+ /******/ };
677
+ /******/ }();
656
678
  /******/
657
679
  /******/ /* webpack/runtime/global */
658
- /******/ __webpack_require__.g = (function() {
659
- /******/ if (typeof globalThis === 'object') return globalThis;
660
- /******/ try {
661
- /******/ return this || new Function('return this')();
662
- /******/ } catch (e) {
663
- /******/ if (typeof window === 'object') return window;
664
- /******/ }
665
- /******/ })();
680
+ /******/ !function() {
681
+ /******/ __webpack_require__.g = (function() {
682
+ /******/ if (typeof globalThis === 'object') return globalThis;
683
+ /******/ try {
684
+ /******/ return this || new Function('return this')();
685
+ /******/ } catch (e) {
686
+ /******/ if (typeof window === 'object') return window;
687
+ /******/ }
688
+ /******/ })();
689
+ /******/ }();
666
690
  /******/
667
691
  /******/ /* webpack/runtime/harmony module decorator */
668
- /******/ __webpack_require__.hmd = function(module) {
669
- /******/ module = Object.create(module);
670
- /******/ if (!module.children) module.children = [];
671
- /******/ Object.defineProperty(module, 'exports', {
672
- /******/ enumerable: true,
673
- /******/ set: function() {
674
- /******/ throw new Error('ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: ' + module.id);
675
- /******/ }
676
- /******/ });
677
- /******/ return module;
678
- /******/ };
692
+ /******/ !function() {
693
+ /******/ __webpack_require__.hmd = function(module) {
694
+ /******/ module = Object.create(module);
695
+ /******/ if (!module.children) module.children = [];
696
+ /******/ Object.defineProperty(module, 'exports', {
697
+ /******/ enumerable: true,
698
+ /******/ set: function() {
699
+ /******/ throw new Error('ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: ' + module.id);
700
+ /******/ }
701
+ /******/ });
702
+ /******/ return module;
703
+ /******/ };
704
+ /******/ }();
679
705
  /******/
680
706
  /******/ /* webpack/runtime/hasOwnProperty shorthand */
681
- /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); };
707
+ /******/ !function() {
708
+ /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
709
+ /******/ }();
682
710
  /******/
683
711
  /************************************************************************/
684
712
  /******/
package/dist/Semaphore.js CHANGED
@@ -3,17 +3,36 @@ if(typeof window==='undefined'||window===null)var window=(typeof globalThis==='u
3
3
  /******/
4
4
  /************************************************************************/
5
5
  /******/ /* webpack/runtime/define property getters */
6
- /******/ // define getter/value functions for harmony exports
7
- /******/ __webpack_require__.d = function(exports, definition) {
8
- /******/ for(var key in definition) {
9
- /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
10
- /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
6
+ /******/ !function() {
7
+ /******/ // define getter/value functions for harmony exports
8
+ /******/ __webpack_require__.d = function(exports, definition) {
9
+ /******/ if(Array.isArray(definition)) {
10
+ /******/ var i = 0;
11
+ /******/ while(i < definition.length) {
12
+ /******/ var key = definition[i++];
13
+ /******/ var binding = definition[i++];
14
+ /******/ if(!__webpack_require__.o(exports, key)) {
15
+ /******/ if(binding === 0) {
16
+ /******/ Object.defineProperty(exports, key, { enumerable: true, value: definition[i++] });
17
+ /******/ } else {
18
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: binding });
19
+ /******/ }
20
+ /******/ } else if(binding === 0) { i++; }
21
+ /******/ }
22
+ /******/ } else {
23
+ /******/ for(var key in definition) {
24
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
25
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
26
+ /******/ }
27
+ /******/ }
11
28
  /******/ }
12
- /******/ }
13
- /******/ };
29
+ /******/ };
30
+ /******/ }();
14
31
  /******/
15
32
  /******/ /* webpack/runtime/hasOwnProperty shorthand */
16
- /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); };
33
+ /******/ !function() {
34
+ /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
35
+ /******/ }();
17
36
  /******/
18
37
  /************************************************************************/
19
38
  var __webpack_exports__ = {};
package/dist/array.js CHANGED
@@ -440,20 +440,58 @@ module.exports = x({ });
440
440
  /******/
441
441
  /************************************************************************/
442
442
  /******/ /* webpack/runtime/define property getters */
443
- /******/ // define getter/value functions for harmony exports
444
- /******/ __webpack_require__.d = function(exports, definition) {
445
- /******/ for(var key in definition) {
446
- /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
447
- /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
443
+ /******/ !function() {
444
+ /******/ // define getter/value functions for harmony exports
445
+ /******/ __webpack_require__.d = function(exports, definition) {
446
+ /******/ if(Array.isArray(definition)) {
447
+ /******/ var i = 0;
448
+ /******/ while(i < definition.length) {
449
+ /******/ var key = definition[i++];
450
+ /******/ var binding = definition[i++];
451
+ /******/ if(!__webpack_require__.o(exports, key)) {
452
+ /******/ if(binding === 0) {
453
+ /******/ Object.defineProperty(exports, key, { enumerable: true, value: definition[i++] });
454
+ /******/ } else {
455
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: binding });
456
+ /******/ }
457
+ /******/ } else if(binding === 0) { i++; }
458
+ /******/ }
459
+ /******/ } else {
460
+ /******/ for(var key in definition) {
461
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
462
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
463
+ /******/ }
464
+ /******/ }
448
465
  /******/ }
449
- /******/ }
450
- /******/ };
466
+ /******/ };
467
+ /******/ }();
451
468
  /******/
452
469
  /******/ /* webpack/runtime/hasOwnProperty shorthand */
453
- /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); };
470
+ /******/ !function() {
471
+ /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
472
+ /******/ }();
454
473
  /******/
455
474
  /************************************************************************/
456
475
  var __webpack_exports__ = {};
476
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
477
+ /* harmony export */ Am: function() { return /* binding */ unique; },
478
+ /* harmony export */ En: function() { return /* binding */ paginate; },
479
+ /* harmony export */ Hb: function() { return /* binding */ removeArrayItem; },
480
+ /* harmony export */ Ht: function() { return /* binding */ extractIfPropertyMatches; },
481
+ /* harmony export */ Ny: function() { return /* binding */ _permute2; },
482
+ /* harmony export */ QR: function() { return /* binding */ makeRange; },
483
+ /* harmony export */ ST: function() { return /* binding */ aggregatePropertyIfEqual; },
484
+ /* harmony export */ UX: function() { return /* binding */ sortTopological; },
485
+ /* harmony export */ _2: function() { return /* binding */ sumUpProperty; },
486
+ /* harmony export */ bH: function() { return /* binding */ permuteLength; },
487
+ /* harmony export */ dO: function() { return /* binding */ deleteEmptyItems; },
488
+ /* harmony export */ gv: function() { return /* binding */ makeArray; },
489
+ /* harmony export */ h1: function() { return /* binding */ merge; },
490
+ /* harmony export */ o6: function() { return /* binding */ extract; },
491
+ /* harmony export */ q6: function() { return /* binding */ extractIfPropertyExists; },
492
+ /* harmony export */ u7: function() { return /* binding */ extractIfMatches; },
493
+ /* harmony export */ y$: function() { return /* binding */ intersect; }
494
+ /* harmony export */ });
457
495
  /* harmony import */ var core_js_modules_es_array_includes_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0);
458
496
  /* harmony import */ var _indicators_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(4);
459
497
  // #!/usr/bin/env babel-node