Module: sources/cores/typed-arrays/isFloat64Array

Export function to validate if a value is a float 64 array buffer
Author:
License:
Source:

Example

import { isFloat64Array } from 'itee-validators'

if( isFloat64Array( value ) ) {
    //...
} else {
    //...
}

Methods


<static> isFloat64Array(data)

Check if given data is a float 64 array
Parameters:
Name Type Description
data * The data to check against the float 64 array type
Source:
Returns:
true if data is a float 64 array , false otherwise.
Type
boolean

<static> isNotFloat64Array(data)

Check if given data is not a float 64 array
Parameters:
Name Type Description
data * The data to check against the float 64 array type
Source:
Returns:
true if data is not a float 64 array , false otherwise.
Type
boolean