Module: sources/cores/typed-arrays/isBigUint64Array

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

Example

import { isBigUint64Array } from 'itee-validators'

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

Methods


<static> isBigUint64Array(data)

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

<static> isNotBigUint64Array(data)

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