Module: sources/cores/typed-arrays/isBigInt64Array

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

Example

import { isBigInt64Array } from 'itee-validators'

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

Methods


<static> isBigInt64Array(data)

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

<static> isNotBigInt64Array(data)

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