Skip to content

Commit 2381deb

Browse files
committed
Plotly.js doesn't currently handle BigInt64/BigUint64 arrays.
The fact that elements aren't regular numbers, and aren't compatible with the Math module functions would make this challenging.
1 parent 8d84f3e commit 2381deb

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/lib/array.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,6 @@ var typedArrays = {
7575
uint32: typeof Uint32Array !== 'undefined' ? Uint32Array : null,
7676
float32: typeof Float32Array !== 'undefined' ? Float32Array : null,
7777
float64: typeof Float64Array !== 'undefined' ? Float64Array : null,
78-
int64: typeof BigInt64Array !== 'undefined' ? BigInt64Array : null,
79-
uint64: typeof BigUint64Array !== 'undefined' ? BigUint64Array : null
8078
};
8179
exports.typedArrays = typedArrays;
8280

0 commit comments

Comments
 (0)