clientnode 4.0.1507 → 4.0.1508

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 +27 -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 +27 -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 +63 -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 +105 -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 +63 -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 +105 -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 +3 -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
@@ -47,6 +47,11 @@ var TRANSITION_END_EVENT_NAMES="transitionend webkitTransitionEnd oTransitionEnd
47
47
  /* 2 */
48
48
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
49
49
 
50
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
51
+ /* harmony export */ I5: function() { return /* binding */ optionalRequire; },
52
+ /* harmony export */ Sw: function() { return /* binding */ optionalImport; },
53
+ /* harmony export */ a8: function() { return /* binding */ determineGlobalContext; }
54
+ /* harmony export */ });
50
55
  /* unused harmony exports isImportSyntaxSupported, currentRequire, setOptionalRequire, getCurrentRequire, clearRequireCache, isolatedRequire */
51
56
  /* module decorator */ module = __webpack_require__.hmd(module);
52
57
  // #!/usr/bin/env babel-node
@@ -622,40 +627,63 @@ var remainingLength=lineLength+LEVELS_COLOR[levelIndex].length+_cli_js__WEBPACK_
622
627
  /******/
623
628
  /************************************************************************/
624
629
  /******/ /* webpack/runtime/define property getters */
625
- /******/ // define getter/value functions for harmony exports
626
- /******/ __webpack_require__.d = function(exports, definition) {
627
- /******/ for(var key in definition) {
628
- /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
629
- /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
630
+ /******/ !function() {
631
+ /******/ // define getter/value functions for harmony exports
632
+ /******/ __webpack_require__.d = function(exports, definition) {
633
+ /******/ if(Array.isArray(definition)) {
634
+ /******/ var i = 0;
635
+ /******/ while(i < definition.length) {
636
+ /******/ var key = definition[i++];
637
+ /******/ var binding = definition[i++];
638
+ /******/ if(!__webpack_require__.o(exports, key)) {
639
+ /******/ if(binding === 0) {
640
+ /******/ Object.defineProperty(exports, key, { enumerable: true, value: definition[i++] });
641
+ /******/ } else {
642
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: binding });
643
+ /******/ }
644
+ /******/ } else if(binding === 0) { i++; }
645
+ /******/ }
646
+ /******/ } else {
647
+ /******/ for(var key in definition) {
648
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
649
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
650
+ /******/ }
651
+ /******/ }
630
652
  /******/ }
631
- /******/ }
632
- /******/ };
653
+ /******/ };
654
+ /******/ }();
633
655
  /******/
634
656
  /******/ /* webpack/runtime/global */
635
- /******/ __webpack_require__.g = (function() {
636
- /******/ if (typeof globalThis === 'object') return globalThis;
637
- /******/ try {
638
- /******/ return this || new Function('return this')();
639
- /******/ } catch (e) {
640
- /******/ if (typeof window === 'object') return window;
641
- /******/ }
642
- /******/ })();
657
+ /******/ !function() {
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
+ /******/ })();
666
+ /******/ }();
643
667
  /******/
644
668
  /******/ /* webpack/runtime/harmony module decorator */
645
- /******/ __webpack_require__.hmd = function(module) {
646
- /******/ module = Object.create(module);
647
- /******/ if (!module.children) module.children = [];
648
- /******/ Object.defineProperty(module, 'exports', {
649
- /******/ enumerable: true,
650
- /******/ set: function() {
651
- /******/ throw new Error('ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: ' + module.id);
652
- /******/ }
653
- /******/ });
654
- /******/ return module;
655
- /******/ };
669
+ /******/ !function() {
670
+ /******/ __webpack_require__.hmd = function(module) {
671
+ /******/ module = Object.create(module);
672
+ /******/ if (!module.children) module.children = [];
673
+ /******/ Object.defineProperty(module, 'exports', {
674
+ /******/ enumerable: true,
675
+ /******/ set: function() {
676
+ /******/ throw new Error('ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: ' + module.id);
677
+ /******/ }
678
+ /******/ });
679
+ /******/ return module;
680
+ /******/ };
681
+ /******/ }();
656
682
  /******/
657
683
  /******/ /* webpack/runtime/hasOwnProperty shorthand */
658
- /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); };
684
+ /******/ !function() {
685
+ /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
686
+ /******/ }();
659
687
  /******/
660
688
  /************************************************************************/
661
689
  /******/
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