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