We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5079fc7 commit 38e10bbCopy full SHA for 38e10bb
src/lib/array.js
@@ -75,8 +75,8 @@ var typedArrays = {
75
uint32: typeof Uint32Array !== 'undefined' ? Uint32Array : null,
76
float32: typeof Float32Array !== 'undefined' ? Float32Array : null,
77
float64: typeof Float64Array !== 'undefined' ? Float64Array : null,
78
- bigint64: typeof BigInt64Array !== 'undefined' ? BigInt64Array : null,
79
- biguint64: typeof BigUint64Array !== 'undefined' ? BigUint64Array : null
+ int64: typeof BigInt64Array !== 'undefined' ? BigInt64Array : null,
+ uint64: typeof BigUint64Array !== 'undefined' ? BigUint64Array : null
80
};
81
exports.typedArrays = typedArrays;
82
0 commit comments