slnodejs 6.1.810 → 6.1.822

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.
@@ -30618,7 +30618,7 @@ module.exports={
30618
30618
  "_resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.5.tgz",
30619
30619
  "_shasum": "c715e09f78b6923977610d4c2346d6ce22e6dded",
30620
30620
  "_spec": "elliptic@^6.5.5",
30621
- "_where": "/var/lib/jenkins/workspace/.OnPremise.Agent.JavaScript_main@2/browser-agent/node_modules/browserify-sign",
30621
+ "_where": "/var/lib/jenkins/workspace/.OnPremise.Agent.JavaScript_main/browser-agent/node_modules/browserify-sign",
30622
30622
  "author": {
30623
30623
  "name": "Fedor Indutny",
30624
30624
  "email": "fedor@indutny.com"
@@ -45421,7 +45421,9 @@ var parseObject = function (chain, val, options, valuesParsed) {
45421
45421
  var root = chain[i];
45422
45422
 
45423
45423
  if (root === '[]' && options.parseArrays) {
45424
- obj = options.allowEmptyArrays && leaf === '' ? [] : [].concat(leaf);
45424
+ obj = options.allowEmptyArrays && (leaf === '' || (options.strictNullHandling && leaf === null))
45425
+ ? []
45426
+ : [].concat(leaf);
45425
45427
  } else {
45426
45428
  obj = options.plainObjects ? Object.create(null) : {};
45427
45429
  var cleanRoot = root.charAt(0) === '[' && root.charAt(root.length - 1) === ']' ? root.slice(1, -1) : root;
@@ -57136,7 +57138,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57136
57138
  "use strict";
57137
57139
  Object.defineProperty(exports, "__esModule", { value: true });
57138
57140
  exports.SL_AGENT_TYPE = exports.SL_AGENT_VERSION = void 0;
57139
- exports.SL_AGENT_VERSION = '6.1.810';
57141
+ exports.SL_AGENT_VERSION = '6.1.822';
57140
57142
  exports.SL_AGENT_TYPE = 'browser';
57141
57143
  });
57142
57144