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 +10 -0
- package/dist/main.js.map +1 -1
- package/lib/integration-tests/helpers/setup.js +3 -0
- package/lib/integration-tests/helpers/setup.js.map +1 -0
- package/lib/longChatPane.test.js +11 -0
- package/lib/longChatPane.test.js.map +1 -0
- package/package.json +9 -2
- package/src/integration-tests/helpers/setup.ts +1 -0
- package/src/longChatPane.test.ts +7 -0
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%') {
|