slnodejs 6.1.761 → 6.1.774

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/browser-agent/node_modules/browserify-sign",
30621
+ "_where": "/var/lib/jenkins/workspace/.OnPremise.Agent.JavaScript_main@2/browser-agent/node_modules/browserify-sign",
30622
30622
  "author": {
30623
30623
  "name": "Fedor Indutny",
30624
30624
  "email": "fedor@indutny.com"
@@ -37127,7 +37127,10 @@ module.exports = function inspect_(obj, options, depth, seen) {
37127
37127
  if (typeof window !== 'undefined' && obj === window) {
37128
37128
  return '{ [object Window] }';
37129
37129
  }
37130
- if (obj === global) {
37130
+ if (
37131
+ (typeof globalThis !== 'undefined' && obj === globalThis)
37132
+ || (typeof global !== 'undefined' && obj === global)
37133
+ ) {
37131
37134
  return '{ [object globalThis] }';
37132
37135
  }
37133
37136
  if (!isDate(obj) && !isRegExp(obj)) {
@@ -57132,7 +57135,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
57132
57135
  "use strict";
57133
57136
  Object.defineProperty(exports, "__esModule", { value: true });
57134
57137
  exports.SL_AGENT_TYPE = exports.SL_AGENT_VERSION = void 0;
57135
- exports.SL_AGENT_VERSION = '6.1.761';
57138
+ exports.SL_AGENT_VERSION = '6.1.774';
57136
57139
  exports.SL_AGENT_TYPE = 'browser';
57137
57140
  });
57138
57141