slnodejs 6.1.760 → 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.
- package/browser-agent/dist/browser-agent-all.js +5 -2
- package/browser-agent/dist/browser-agent-all.min.js +2 -2
- package/browser-agent/package.json +1 -1
- package/lib/preload.js +19 -17
- package/package.json +2 -1
- package/tsOutputs/cli-parse/executors/build-executor.js +2 -1
- package/tsOutputs/cli-parse/executors/build-executor.js.map +1 -1
- package/tsOutputs/test-listener/agent-loader.js +5 -1
- package/tsOutputs/test-listener/agent-loader.js.map +1 -1
- package/tsOutputs/test-listener/remote-agent.d.ts +6 -1
- package/tsOutputs/test-listener/remote-agent.js +13 -2
- package/tsOutputs/test-listener/remote-agent.js.map +1 -1
|
@@ -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 (
|
|
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.
|
|
57138
|
+
exports.SL_AGENT_VERSION = '6.1.774';
|
|
57136
57139
|
exports.SL_AGENT_TYPE = 'browser';
|
|
57137
57140
|
});
|
|
57138
57141
|
|