chat-pane 2.4.23-98c0ef76 → 2.4.23-d7dc428f

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/dist/main.js CHANGED
@@ -19844,6 +19844,8 @@ var INTRINSICS = {
19844
19844
  '%AsyncIteratorPrototype%': needsEval,
19845
19845
  '%Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics,
19846
19846
  '%BigInt%': typeof BigInt === 'undefined' ? undefined : BigInt,
19847
+ '%BigInt64Array%': typeof BigInt64Array === 'undefined' ? undefined : BigInt64Array,
19848
+ '%BigUint64Array%': typeof BigUint64Array === 'undefined' ? undefined : BigUint64Array,
19847
19849
  '%Boolean%': Boolean,
19848
19850
  '%DataView%': typeof DataView === 'undefined' ? undefined : DataView,
19849
19851
  '%Date%': Date,
@@ -19899,6 +19901,14 @@ var INTRINSICS = {
19899
19901
  '%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet
19900
19902
  };
19901
19903
 
19904
+ try {
19905
+ null.error; // eslint-disable-line no-unused-expressions
19906
+ } catch (e) {
19907
+ // https://github.com/tc39/proposal-shadowrealm/pull/384#issuecomment-1364264229
19908
+ var errorProto = getProto(getProto(e));
19909
+ INTRINSICS['%Error.prototype%'] = errorProto;
19910
+ }
19911
+
19902
19912
  var doEval = function doEval(name) {
19903
19913
  var value;
19904
19914
  if (name === '%AsyncFunction%') {