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