slnodejs 6.1.630 → 6.1.632
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.
|
@@ -34784,13 +34784,17 @@ module.exports = hasPropertyDescriptors;
|
|
|
34784
34784
|
'use strict';
|
|
34785
34785
|
|
|
34786
34786
|
var test = {
|
|
34787
|
+
__proto__: null,
|
|
34787
34788
|
foo: {}
|
|
34788
34789
|
};
|
|
34789
34790
|
|
|
34790
34791
|
var $Object = Object;
|
|
34791
34792
|
|
|
34793
|
+
/** @type {import('.')} */
|
|
34792
34794
|
module.exports = function hasProto() {
|
|
34793
|
-
|
|
34795
|
+
// @ts-expect-error: TS errors on an inherited property for some reason
|
|
34796
|
+
return { __proto__: test }.foo === test.foo
|
|
34797
|
+
&& !(test instanceof $Object);
|
|
34794
34798
|
};
|
|
34795
34799
|
|
|
34796
34800
|
},{}],287:[function(require,module,exports){
|
|
@@ -58675,7 +58679,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
58675
58679
|
"use strict";
|
|
58676
58680
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
58677
58681
|
exports.SL_AGENT_TYPE = exports.SL_AGENT_VERSION = void 0;
|
|
58678
|
-
exports.SL_AGENT_VERSION = '6.1.
|
|
58682
|
+
exports.SL_AGENT_VERSION = '6.1.632';
|
|
58679
58683
|
exports.SL_AGENT_TYPE = 'browser';
|
|
58680
58684
|
});
|
|
58681
58685
|
|