Skip to content

Commit 38e10bb

Browse files
committed
remove big for consistency
1 parent 5079fc7 commit 38e10bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/array.js

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

0 commit comments

Comments
 (0)