-
-
Notifications
You must be signed in to change notification settings - Fork 0
bigint64 array
Nicholas Berlette edited this page Jun 19, 2025
·
1 revision
function isBigInt64Array(it: unknown): it is BigInt64Array;
Check if the given value is a BigInt64Array
instance.
Name | Info |
---|---|
it |
The value to check. |
true
if the value is a BigInt64Array
instance, false
otherwise.
Binary Data Structures
import { isBigInt64Array } from "jsr:@nick/is/bigint64array";
const arr = new BigInt64Array(8);
isBigInt64Array(arr); // true
isBigInt64Array(arr.buffer); // false